Add rpm spec to eio and one more entry to svn:ignore.

SVN revision: 57140
This commit is contained in:
Rui Seabra 2011-02-17 23:13:36 +00:00
parent 12a4f056b3
commit 885c5ddcde
3 changed files with 62 additions and 0 deletions

View File

@ -50,6 +50,7 @@ EXTRA_DIST = \
AUTHORS \
COPYING \
autogen.sh \
eio.spec \
eio.pc.in
pkgconfigdir = $(libdir)/pkgconfig

View File

@ -164,6 +164,7 @@ fi
AC_OUTPUT([
eio.pc
eio.spec
Makefile
doc/Makefile
doc/eio.dox

60
legacy/eio/eio.spec.in Normal file
View File

@ -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 <rms@1407.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
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