blob: c58f145593219e3c8cb8e74a4e84e35b677c6764 (
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 = "GeeXboX libNFO is a small library aiming at parsing and writing NFO files."
HOMEPAGE = "http://libnfo.geexbox.org/"
SECTION = "libs/multimedia"
LICENSE = "LGPLv2+"
DEPENDS = "libxml2"
INC_PR = "r0"
SRC_URI = "http://libnfo.geexbox.org/releases/${PN}.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}/*"
|