Sat Oct 25 11:41:49 2008 Michael Jennings (mej)
authormej <mej>
Sat, 25 Oct 2008 18:46:18 +0000 (18:46 +0000)
committermej <mej@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 25 Oct 2008 18:46:18 +0000 (18:46 +0000)
Add spec file for eina.
----------------------------------------------------------------------

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37104 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

configure.ac
eina.spec.in [new file with mode: 0644]

index d6c5a59..a60be6b 100644 (file)
@@ -311,6 +311,7 @@ AC_FUNC_ALLOCA
 AC_CONFIG_FILES([
 Makefile
 eina-0.pc
+eina.spec
 doc/Makefile
 src/Makefile
 src/include/Makefile
diff --git a/eina.spec.in b/eina.spec.in
new file mode 100644 (file)
index 0000000..8abc4d3
--- /dev/null
@@ -0,0 +1,60 @@
+%define _missing_doc_files_terminate_build 0
+
+Summary: Data Type Library
+Name: @PACKAGE@
+Version: @VERSION@
+Release: 0.%(date '+%Y%m%d')
+License: BSD
+Group: System Environment/Libraries
+Source: %{name}-%{version}.tar.gz
+Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <mej@eterm.org>}
+Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)}
+Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
+URL: http://www.enlightenment.org/
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+
+%description
+Eina is a data type library.
+
+%package devel
+Summary: Eina headers, static libraries, documentation and test programs
+Group: System Environment/Libraries
+Requires: %{name} = %{version}
+
+%description devel
+Headers, static libraries, test programs and documentation for Eina
+
+%prep
+%setup -q
+
+%build
+%{configure} --prefix=%{_prefix}
+%{__make} %{?_smp_mflags} %{?mflags}
+
+%install
+%{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install
+
+%clean
+test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT
+
+%post
+/sbin/ldconfig
+
+%postun
+/sbin/ldconfig
+
+%files
+%defattr(-, root, root)
+%doc AUTHORS COPYING README
+%{_libdir}/*.so.*
+%{_libdir}/%{name}
+
+%files devel
+%defattr(-, root, root)
+%{_includedir}/*
+%{_libdir}/*.a
+%{_libdir}/*.so
+%{_libdir}/*.la
+%{_libdir}/pkgconfig/*
+
+%changelog