Add Tizen 2.0 packaging 13/2413/1 2.0alpha-wayland submit/2.0alpha-wayland/20121127.222020
authorRusty Lynch <rusty.lynch@intel.com>
Tue, 20 Nov 2012 05:22:27 +0000 (21:22 -0800)
committerRusty Lynch <rusty.lynch@intel.com>
Tue, 20 Nov 2012 23:59:21 +0000 (15:59 -0800)
packaging/eobj.changes [new file with mode: 0644]
packaging/eobj.spec [new file with mode: 0755]

diff --git a/packaging/eobj.changes b/packaging/eobj.changes
new file mode 100644 (file)
index 0000000..3edf4d1
--- /dev/null
@@ -0,0 +1,3 @@
+* Tue Nov 20 2012 Rusty Lynch <rusty.lynch@intel.com> 88050f2
+- Initial packaging
+
diff --git a/packaging/eobj.spec b/packaging/eobj.spec
new file mode 100755 (executable)
index 0000000..b280b29
--- /dev/null
@@ -0,0 +1,57 @@
+Name:       eobj
+Summary:    EFL Object Library
+Version:    1.7.1+svn.78409+build01
+Release:    1
+Group:      System/Libraries
+License:    BSD
+URL:        http://www.enlightenment.org/
+Source0:    %{name}-%{version}.tar.gz
+Requires(post): /sbin/ldconfig
+Requires(postun): /sbin/ldconfig
+BuildRequires:  pkgconfig(eina)
+
+%description
+Enlightenment DR17 Object library... because everyone needs a package with
+the name 'object' inside it.  This completes TLA compliance, have a nice day. 
+
+%package devel
+Summary:    Eobj (devel)
+Group:      Development/Libraries
+Requires:   %{name} = %{version}-%{release}
+
+
+%description devel
+Enlightenment DR17 Object library (devel)
+
+%prep
+%setup -q
+
+%build
+export CFLAGS+=" -fvisibility=hidden -ffast-math -fPIC"
+export LDFLAGS+=" -fvisibility=hidden -Wl,--hash-style=both -Wl,--as-needed"
+
+%autogen
+%configure --disable-static 
+  
+make %{?jobs:-j%jobs}
+
+
+%install
+rm -rf %{buildroot}
+%make_install
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%{_libdir}/libeo.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/eo-1/Eo.h
+%{_libdir}/libeo.so
+%{_libdir}/pkgconfig/eo.pc
+