blob: 05bfb1dc3e8b72430df0b4e779eb6739cdf0a0d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "The X MultiMedia System"
HOMEPAGE = "http://www.xmms.org/"
LICENSE = "GPL"
SECTION = "x11/multimedia"
# TODO add esd mikmod vorbis
DEPENDS = "gtk+-1.2"
SRC_URI = "http://www.xmms.org/files/1.2.x/xmms-${PV}.tar.bz2 \
file://gcc4.patch;patch=1"
inherit autotools
# TODO enable esd mikmod vorbis
EXTRA_OECONF = "--disable-opengl --disable-esd --disable-mikmod --disable-vorbis"
do_configure() {
oe_runconf
}
do_compile() {
oe_runmake LIBTOOL=${STAGING_BINDIR}/${TARGET_PREFIX}libtool
}
|