blob: 8c58374e7ab8f7fed8b0bf213dc542fabc87a913 (
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 = "ushare is a UPnP media server"
LICENSE = "GPL"
HOMEPAGE = "http://ushare.geexbox.org/"
DEPENDS = "libupnp virtual/libiconv virtual/libintl"
SRC_URI = "http://ushare.geexbox.org/releases/ushare-${PV}.tar.bz2"
S = "${WORKDIR}/ushare-${PV}"
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} \
--cross-compile
}
SRC_URI[md5sum] = "5bbcdbf1ff85a9710fa3d4e82ccaa251"
SRC_URI[sha256sum] = "7b9b85c79968d4f4560f02a99e33c6a33ff58f9d41d8faea79e31cce2ee78665"
|