add packaging files
authorAnas Nashif <anas.nashif@intel.com>
Wed, 24 Oct 2012 15:49:28 +0000 (08:49 -0700)
committerEduardo Lima (Etrunko) <eduardo.lima@intel.com>
Tue, 13 Aug 2013 20:42:33 +0000 (17:42 -0300)
packaging/eina.spec [new file with mode: 0644]

diff --git a/packaging/eina.spec b/packaging/eina.spec
new file mode 100644 (file)
index 0000000..1b5e73c
--- /dev/null
@@ -0,0 +1,52 @@
+Name:           eina
+Version:        1.7.1
+Release:        1
+License:        LGPL-2.1+
+Summary:        Data Type Library
+Url:            http://www.enlightenment.org/
+Group:          System/Libraries
+Source0:        eina-%{version}.tar.gz
+BuildRequires:  doxygen
+
+%description
+Eina is a data type library.
+
+%package devel
+Summary:        Development components for the eina package
+Group:          Development/Libraries
+Requires:       %{name} = %{version}
+
+%description devel
+Development files for eina
+
+%prep
+%setup -q
+
+%build
+
+%configure --disable-static
+make %{?_smp_mflags}
+
+%install
+%make_install
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%defattr(-,root,root,-)
+%doc COPYING
+%{_libdir}/libeina.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/eina-1/*.h
+%{_includedir}/eina-1/eina/*
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/*.pc
+
+
+%changelog