Add Tizen 2.0 packaging 19/2619/1 2.0alpha-wayland accepted/2.0alpha-wayland/20121219.185833 submit/2.0alpha-wayland/20121219.012519
authorRusty Lynch <rusty.lynch@intel.com>
Tue, 20 Nov 2012 21:44:17 +0000 (13:44 -0800)
committerRusty Lynch <rusty.lynch@intel.com>
Wed, 19 Dec 2012 00:46:31 +0000 (16:46 -0800)
packaging/embryo.changes [new file with mode: 0644]
packaging/embryo.spec [new file with mode: 0644]

diff --git a/packaging/embryo.changes b/packaging/embryo.changes
new file mode 100644 (file)
index 0000000..66b6e1b
--- /dev/null
@@ -0,0 +1,11 @@
+* Tue Dec 18 2012 Rusty Lynch <rusty.lynch@intel.com> f18d91f
+- Update to stable snapshot 1.7.3-svn.81116
+
+* Tue Nov 20 2012 Rusty Lynch <rusty.lynch@intel.com> 71022c6
+- Update to svn snapshot 1.7.1+svn.78502 
+
+* Wed 15 Aug 2012 Rob Bradford <rob@linux.intel.com> - 1.2.99.svn.75095
+- Update snapshot
+
+* Wed Jun 12 2012 - Rusty Lynch <rusty.lynch@intel.com> - 1.2.99+svn.71848 
+- Packaging snapshot of master
diff --git a/packaging/embryo.spec b/packaging/embryo.spec
new file mode 100644 (file)
index 0000000..994c58a
--- /dev/null
@@ -0,0 +1,66 @@
+#sbs-git:slp/pkgs/e/embryo embryo 1.1.0+svn.68928slp2+build01 ff312ab0f1dd243c5f94e56b2e55f3c43b0cf40f
+Name:       embryo
+Summary:    A small virtual machine engine (in a library) and bytecode compiler
+Version:    1.7.3+svn.81116+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)
+Provides: embryo-bin
+
+
+%description
+Development files for libembryo0 Embryo is primarily a shared library that gives you an API to load
+ and control interpreted programs compiled into an abstract machine
+ bytecode that it understands.  This abstract (or virtual) machine is
+ similar to a real machine with a CPU, but it is emulated in
+ software.
+ .
+ This packages contains headers and static libraries for Embryo.
+
+
+
+%package devel
+Summary:    A small virtual machine engine and bytecode compile (devel)
+Group:      Development/Libraries
+Requires:   %{name} = %{version}-%{release}
+
+%description devel
+A small virtual machine engine (in a library) and bytecode compile (devel)
+
+%prep
+%setup -q
+
+
+%build
+export CFLAGS+=" -fvisibility=hidden -fPIC"
+export LDFLAGS+=" -fvisibility=hidden -Wl,--hash-style=both -Wl,--as-needed"
+
+libtoolize --force
+%autogen --disable-static
+%configure --disable-static
+make %{?jobs:-j%jobs}
+
+%install
+%make_install
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%{_libdir}/libembryo.so.*
+%{_bindir}/embryo_cc
+%{_datadir}/embryo/include/default.inc
+
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/embryo-1/Embryo.h
+%{_libdir}/libembryo.so
+%{_libdir}/pkgconfig/*.pc