summaryrefslogtreecommitdiff
path: root/extra/gupnp-dlna/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/gupnp-dlna/PKGBUILD')
-rw-r--r--extra/gupnp-dlna/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/gupnp-dlna/PKGBUILD b/extra/gupnp-dlna/PKGBUILD
new file mode 100644
index 000000000..f42e8dbd9
--- /dev/null
+++ b/extra/gupnp-dlna/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 183421 2013-04-21 22:11:02Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
+# Contributor: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=gupnp-dlna
+pkgver=0.10.1
+pkgrel=1
+pkgdesc="Library to ease DLNA-related bits for applications using gupnp"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://gupnp.org/"
+license=(LGPL)
+depends=(gst-plugins-base-libs)
+makedepends=(gobject-introspection gtk-doc vala)
+options=('!libtool')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c514ec6edd2a427914ef79fed002f91b875fde127084f21d770401a1d2b95f7b')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ make check
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make -j1 DESTDIR="$pkgdir" install
+}