diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-12-16 12:33:55 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-12-16 12:36:17 +0100 |
commit | 80584c1a44cae4568c6f8ebb7ee4995337f8f58c (patch) | |
tree | bce09c635fa95c1dd98a9f18f07f9b419777f20b /meta-oe/recipes-multimedia | |
parent | 11fbc9fb4efaa59aca85ba352f6ebc3412eaedd0 (diff) | |
download | meta-openembedded-80584c1a44cae4568c6f8ebb7ee4995337f8f58c.tar.gz |
libmodplug: add 0.8.7
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-multimedia')
-rw-r--r-- | meta-oe/recipes-multimedia/libmodplug/libmodplug_0.8.7.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libmodplug/libmodplug_0.8.7.bb b/meta-oe/recipes-multimedia/libmodplug/libmodplug_0.8.7.bb new file mode 100644 index 000000000..f65270dcf --- /dev/null +++ b/meta-oe/recipes-multimedia/libmodplug/libmodplug_0.8.7.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | DESCRIPTION = "Library for reading mod-like audio files." | ||
2 | HOMEPAGE = "http://modplug-xmms.sf.net" | ||
3 | |||
4 | LICENSE = "PD" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=c9182faa1f7c316f7b97d404bcbe3685" | ||
6 | |||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/modplug-xmms/libmodplug-${PV}.tar.gz" | ||
8 | SRC_URI[md5sum] = "d2d9ccd8da22412999caed076140f786" | ||
9 | SRC_URI[sha256sum] = "3cfdebb60833a082e2f2b8faa3892bc9201d05c64051503e8007d8c98ae9e4c2" | ||
10 | |||
11 | inherit autotools pkgconfig | ||
12 | |||
13 | EXTRA_OECONF = "--disable-option-checking" | ||
14 | |||
15 | # NOTE: autotools_stage_all does nothing here, we need to do it manually | ||
16 | do_install_append() { | ||
17 | install -d ${D}${includedir}/libmodplug | ||
18 | install -m 0644 ${S}/src/modplug.h ${D}${includedir}/libmodplug | ||
19 | install -m 0644 ${S}/src/modplug.h ${D}${includedir}/ | ||
20 | } | ||
21 | |||