aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ushare/ushare_hg.bb
blob: 6112f9559a0fef4b3c2bef4cd4d7256f42052306 (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
DESCRIPTION = "ushare is a UPnP media server"
LICENSE = "GPL"
HOMEPAGE = "http://ushare.geexbox.org/"
DEPENDS = "gamin libdlna libupnp virtual/libiconv virtual/libintl"

PV = "1.1a"
PR = "r1"
PR_append = "+hg${NOTQUITESRCREV}"
NOTQUITESRCREV = "2e40e513a4a0"

SRC_URI = "hg://hg.geexbox.org;proto=http;module=ushare;rev=${NOTQUITESRCREV} \
"

S= "${WORKDIR}/ushare"

inherit autotools gettext

# the configure script is hand-crafted, it rejects some of the usual
# configure arguments
do_configure () {
	${S}/configure \
		    --prefix=${prefix} \
		    --bindir=${bindir} \
		    --localedir=${datadir}/locale \
		    --sysconfdir=${sysconfdir} \
		    --disable-strip \
            --enable-fam \
            --cross-compile
}