Add rpm support
authorRui Seabra <rms@1407.org>
Sun, 23 Sep 2012 13:39:53 +0000 (13:39 +0000)
committerRui Seabra <rms@1407.org>
Sun, 23 Sep 2012 13:39:53 +0000 (13:39 +0000)
SVN revision: 77023

legacy/ephysics/Makefile.am
legacy/ephysics/configure.ac
legacy/ephysics/ephysics.spec.in [new file with mode: 0644]

index 4964416..8fac0f3 100644 (file)
@@ -33,6 +33,7 @@ COPYING \
 COPYING_ARTS \
 autogen.sh \
 ephysics.pc.in \
+ephysics.spec \
 README
 
 pkgconfigdir = $(libdir)/pkgconfig
@@ -45,4 +46,4 @@ endif
 
 doc:
        @echo "entering doc/"
-       make -C doc doc
\ No newline at end of file
+       make -C doc doc
index 28fc19e..e064b5f 100644 (file)
@@ -220,6 +220,7 @@ AC_SUBST(requirement_ephysics)
 
 AC_OUTPUT([
 ephysics.pc
+ephysics.spec
 Makefile
 data/Makefile
 data/logo_images/Makefile
diff --git a/legacy/ephysics/ephysics.spec.in b/legacy/ephysics/ephysics.spec.in
new file mode 100644 (file)
index 0000000..0a18043
--- /dev/null
@@ -0,0 +1,66 @@
+%{!?_rel:%{expand:%%global _rel 0.enl%{?dist}}}
+%define _missing_doc_files_terminate_build 0
+
+Summary: ephysics library
+Name: @PACKAGE@
+Version: @VERSION@
+Release: %{_rel}
+License: MIT
+Group: System Environment/Libraries
+Source: http://download.enlightenment.org/releases/%{name}-%{version}.tar.gz
+Packager: %{?_packager:%{_packager}}%{!?_packager:Rui Miguel 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
+EPhysics is a library that manages Ecore, Evas and Bullet Physics into
+an easy to use way. It's a kind of wrapper, a glue, between these libraries.
+It's not intended to be a physics library (we already have many out there).
+
+%package devel
+Summary: EPhysics headers, static libraries, documentation and test programs
+Group: System Environment/Libraries
+Requires: %{name} = %{version}
+
+%description devel
+Headers, static libraries, test programs and documentation for EPhysics
+
+%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
+%{_bindir}/*
+%{_libdir}/*.so.*
+%dir %{_datadir}/ephysics/
+%{_datadir}/ephysics/*.edj
+%{_datadir}/ephysics/*.png
+
+%files devel
+%defattr(-, root, root)
+%{_includedir}/*
+%{_libdir}/*.a
+%{_libdir}/*.so
+%{_libdir}/*.la
+%{_libdir}/pkgconfig/*
+
+%changelog