diff options
| author | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-15 18:40:36 +0200 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-15 18:40:36 +0200 |
| commit | de2f5c9c87cd413aa954fdeb459b502c27168bd9 (patch) | |
| tree | 01111b52a04259da39d3b243a94362c59f3ea4e6 | |
| parent | 3b592422e98a9eda79970807ace52aa372314200 (diff) | |
| download | meta-openembedded-de2f5c9c87cd413aa954fdeb459b502c27168bd9.tar.gz | |
subsurface: inital add
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
| -rw-r--r-- | meta-oe/recipes-extended/subsurface/subsurface_git.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/subsurface/subsurface_git.bb b/meta-oe/recipes-extended/subsurface/subsurface_git.bb new file mode 100644 index 0000000000..b1a7e3ee19 --- /dev/null +++ b/meta-oe/recipes-extended/subsurface/subsurface_git.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | DESCRIPTION = "Subsurface is an open source dive log program." | ||
| 2 | LICENSE = "GPLv2" | ||
| 3 | LIC_FILES_CHKSUM = "file://gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 4 | |||
| 5 | DEPENDS = "libdivecomputer gtk+ libxml2 glib-2.0" | ||
| 6 | |||
| 7 | inherit gtk-icon-cache | ||
| 8 | |||
| 9 | PV = "1.0" | ||
| 10 | SRCREV = "f2c61aefa762ce2ef7dea61886afeb23b0fe5eff" | ||
| 11 | SRC_URI = "git://subsurface.hohndel.org/subsurface.git" | ||
| 12 | S = "${WORKDIR}/git" | ||
| 13 | |||
| 14 | EXTRA_OEMAKE = "CC='${CC}' \ | ||
| 15 | libdc-usr=${STAGING_INCDIR}/libdivecomputer/* \ | ||
| 16 | LIBDIVECOMPUTERINCLUDES=${STAGING_INCDIR}/libdivecomputer \ | ||
| 17 | LIBDIVECOMPUTERARCHIVE=${STAGING_LIBDIR}/libdivecomputer.a \ | ||
| 18 | " | ||
| 19 | |||
| 20 | do_install() { | ||
| 21 | install -d ${D}${datadir}/man/man1 | ||
| 22 | oe_runmake install prefix=${D}${prefix} | ||
| 23 | rm ${D}${datadir}/icons/hicolor/icon-theme.cache | ||
| 24 | } | ||
| 25 | |||
| 26 | FILES_${PN} += "${datadir}/icons/hicolor/scalable/apps/subsurface.svg" | ||
| 27 | RRECOMMENDS_${PN}_append_libc-glibc = " eglibc-gconv-iso8859-15" | ||
| 28 | |||
