blob: ea74aee13553cb0565e541c3ec2df5897af8d46e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
DESCRIPTION = "libplayer is a multimedia A/V abstraction layer API. Its goal is to interact with Enna Media Center."
HOMEPAGE = "http://libplayer.geexbox.org/"
SECTION = "libs/multimedia"
LICENSE = "LGPLv2.1+"
DEPENDS = "virtual/libx11 libxcb mplayer gstreamer"
INC_PR = "r1"
SRC_URI = "http://${PN}.geexbox.org/releases/${P}.tar.bz2;name=${PN}"
inherit autotools pkgconfig
# the configure script is hand-crafted, it rejects some of the usual
# configure arguments
do_configure() {
${S}/configure \
--prefix=${prefix} \
--disable-strip \
--cross-compile \
--enable-pic \
--enable-doc
}
PACKAGES =+ "${PN}-bin"
FILES_${PN}-bin = "${bindir}/*"
|