blob: b0b58d3d8e7c81250f38f08c1bd593a2a647b73f (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gupnp
pkgver=0.16.1
pkgrel=2
pkgdesc="A framework for creating UPnP devices & control points"
url="http://www.gupnp.org/"
arch="all"
license="LGPLv2+"
depends=
depends_dev="dbus-dev libsoup-dev libxml2-dev util-linux-dev gssdp-dev"
makedepends="$depends_dev gobject-introspection-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://www.gupnp.org/sites/all/files/sources/gupnp-$pkgver.tar.gz"
_builddir="$srcdir"/gupnp-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
--enable-introspection=yes \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la
}
md5sums="021bb237741532af4bca50157ff326e4 gupnp-0.16.1.tar.gz"
|