Add an rpm spec and a few more svn:ignore references.
authorrui <rui@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 17 Feb 2011 23:05:11 +0000 (23:05 +0000)
committerrui <rui@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 17 Feb 2011 23:05:11 +0000 (23:05 +0000)
git-svn-id: https://svn.enlightenment.org/svn/e/trunk/ethumb@57139 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

Makefile.am
configure.ac
ethumb.spec.in [new file with mode: 0644]

index d8ed52a..cea71e3 100644 (file)
@@ -12,6 +12,7 @@ MAINTAINERCLEANFILES = \
        missing
 
 EXTRA_DIST = m4/Makefile.in \
+       ethumb.spec
        README \
        AUTHORS \
        COPYING
index ec985b9..588e68f 100644 (file)
@@ -201,6 +201,7 @@ AC_SUBST(dbusservicedir)
 
 AC_OUTPUT([
 ethumb.pc
+ethumb.spec
 ethumb_client.pc
 org.enlightenment.Ethumb.service
 Makefile
diff --git a/ethumb.spec.in b/ethumb.spec.in
new file mode 100644 (file)
index 0000000..e24d880
--- /dev/null
@@ -0,0 +1,69 @@
+%{!?_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
+Ethumb is a thumbnail generation library
+
+%package devel
+Summary: Ethumb headers, static libraries, documentation and test programs
+Group: System Environment/Libraries
+Requires: %{name} = %{version}
+
+%description devel
+Headers, static libraries, test programs and documentation for Ethumb
+
+%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.*
+%{_bindir}/ethumb
+%{_bindir}/ethumbd
+%{_bindir}/ethumbd_client
+%{_datadir}/dbus-1/services/org.enlightenment.Ethumb.service
+%{_datadir}/ethumb/data/frames/default.edj
+
+%files devel
+%defattr(-, root, root)
+%{_includedir}/*
+%{_libdir}/*.a
+%{_libdir}/*.so
+%{_libdir}/*.la
+%{_libdir}/pkgconfig/*
+%{_libdir}/ethumb/plugins/*.so
+%{_libdir}/ethumb/plugins/*.la
+%{_libdir}/ethumb/plugins/data/emotion_template.edj
+%{_libexecdir}/ethumbd_slave
+
+%changelog