diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/embryo | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/embryo')
-rw-r--r-- | packages/embryo/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/embryo/embryo-native_0.9.1.007.bb | 7 | ||||
-rw-r--r-- | packages/embryo/embryo_0.9.1.007.bb | 25 |
3 files changed, 32 insertions, 0 deletions
diff --git a/packages/embryo/.mtn2git_empty b/packages/embryo/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/embryo/.mtn2git_empty diff --git a/packages/embryo/embryo-native_0.9.1.007.bb b/packages/embryo/embryo-native_0.9.1.007.bb index e69de29bb2..89980d343e 100644 --- a/packages/embryo/embryo-native_0.9.1.007.bb +++ b/packages/embryo/embryo-native_0.9.1.007.bb @@ -0,0 +1,7 @@ +include embryo_${PV}.bb +inherit native + +do_stage () { + oe_libinstall -C src/lib libembryo ${STAGING_LIBDIR}/ + install -m 0644 ${S}/src/lib/Embryo.h ${STAGING_INCDIR}/ +} diff --git a/packages/embryo/embryo_0.9.1.007.bb b/packages/embryo/embryo_0.9.1.007.bb index e69de29bb2..49a1e9df4e 100644 --- a/packages/embryo/embryo_0.9.1.007.bb +++ b/packages/embryo/embryo_0.9.1.007.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Embryo implements a C like scripting language used in various parts \ +of the Enlightenment project, namely Edje. Embryo's scripting language is based on \ +CompuPhase's Small language that was introduced in Dr Dobb's Journal in 1999. \ +Embryo allows scripting capabilities in places that otherwise wouldn't support \ +basic programming structures such as in Edje EDCs." +SECTION = "e/libs" +LICENSE = "MIT" +PR = "r0" + +SRC_URI = "http://enlightenment.freedesktop.org/files/embryo-${PV}.tar.gz" +S = "${WORKDIR}/embryo-${PV}" + +inherit autotools pkgconfig binconfig + +do_stage () { + oe_libinstall -C src/lib libembryo ${STAGING_LIBDIR}/ + install -m 0644 ${S}/src/lib/Embryo.h ${STAGING_INCDIR}/ +} + +PACKAGES += "embryo-examples" + +FILES_${PN} = "${libdir}/libembryo*.so*" +FILES_${PN}-dev += "${bindir} ${libdir}/pkgconfig" +FILES_${PN}-examples = "${datadir}" + |