diff --git a/legacy/eio/Makefile.am b/legacy/eio/Makefile.am index d0f3ba64f7..9d5664e9bb 100644 --- a/legacy/eio/Makefile.am +++ b/legacy/eio/Makefile.am @@ -50,6 +50,7 @@ EXTRA_DIST = \ AUTHORS \ COPYING \ autogen.sh \ +eio.spec \ eio.pc.in pkgconfigdir = $(libdir)/pkgconfig diff --git a/legacy/eio/configure.ac b/legacy/eio/configure.ac index 449d1d4026..aed3bb49ef 100644 --- a/legacy/eio/configure.ac +++ b/legacy/eio/configure.ac @@ -164,6 +164,7 @@ fi AC_OUTPUT([ eio.pc +eio.spec Makefile doc/Makefile doc/eio.dox diff --git a/legacy/eio/eio.spec.in b/legacy/eio/eio.spec.in new file mode 100644 index 0000000000..d5b0bf5b59 --- /dev/null +++ b/legacy/eio/eio.spec.in @@ -0,0 +1,60 @@ +%{!?_rel:%{expand:%%global _rel 0.r%(svnversion | sed 's/[^0-9].*$//' || echo 0000)}} +%define _missing_doc_files_terminate_build 0 + +Summary: Data Type Library +Name: @PACKAGE@ +Version: @VERSION@ +Release: %{_rel} +License: LGPLv2.1 +Group: System Environment/Libraries +Source: http://download.enlightenment.org/releases/%{name}-%{version}.tar.gz +Packager: %{?_packager:%{_packager}}%{!?_packager:Rui Miguel Silva Seabra } +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 +Enlightenment Input Output Library + +%package devel +Summary: Eio headers, static libraries, documentation and test programs +Group: System Environment/Libraries +Requires: %{name} = %{version} + +%description devel +Headers, static libraries, test programs and documentation for Eio + +%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.* + +%files devel +%defattr(-, root, root) +%{_includedir}/* +%{_libdir}/*.a +%{_libdir}/*.so +%{_libdir}/*.la +%{_libdir}/pkgconfig/* + +%changelog