blob: 0283eb6ae76de53eca390aa98b899b758095727e (
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
27
28
29
30
31
32
33
|
DESCRIPTION = "MediaTomb - UPnP AV MediaServer for Linux"
HOMEPAGE = "http://mediatomb.org/"
LICENSE = "GPLv2"
DEPENDS = "sqlite3 libexif js zlib file id3lib"
PV = "0.8+0.9pre1+svn${SRCDATE}-sqlite"
PR = "r2"
SRC_URI = "svn://mediatomb.svn.sourceforge.net/svnroot/mediatomb/trunk;proto=https;module=mediatomb"
S = "${WORKDIR}/mediatomb"
inherit autotools pkgconfig
EXTRA_OECONF = "--disable-mysql \
--disable-rpl-malloc \
--enable-sqlite3 \
--enable-libjs \
--enable-libmagic \
--enable-id3lib \
--enable-libexif \
--disable-largefile \
--with-sqlite3-h=${STAGING_INCDIR} \
--with-sqlite3-libs=${STAGING_LIBDIR} \
--with-magic-h=${STAGING_INCDIR} \
--with-magic-libs=${STAGING_LIBDIR} \
--with-exif-h=${STAGING_INCDIR} \
--with-exif-libs=${STAGING_LIBDIR} \
--with-zlib-h=${STAGING_INCDIR} \
--with-zlib-libs=${STAGING_LIBDIR} \
--with-js-h=${STAGING_INCDIR}/js \
--with-js-libs=${STAGING_LIBDIR} \
--with-id3lib-h=${STAGING_INCDIR} \
--with-id3lib-libs=${STAGING_LIBDIR}"
|