summaryrefslogtreecommitdiff
path: root/extra/gupnp-dlna/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-03-22 11:26:53 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2013-03-22 11:26:53 +0100
commit50a468d0a3c5555c9e6889696bd0397f17a6974c (patch)
tree8d8b7bc211e7e2b5a91c25c86c5b7ae58e9e4a52 /extra/gupnp-dlna/PKGBUILD
parentbf6c93db356044781e343fe26da74d357b4beda3 (diff)
parent6b3123e5628817e3cef9c44989dffd21c49b0817 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/cksfv/PKGBUILD extra/clutter-gtk2/PKGBUILD extra/gnuplot/PKGBUILD extra/mx/PKGBUILD
Diffstat (limited to 'extra/gupnp-dlna/PKGBUILD')
-rw-r--r--extra/gupnp-dlna/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/gupnp-dlna/PKGBUILD b/extra/gupnp-dlna/PKGBUILD
new file mode 100644
index 000000000..f142ec75d
--- /dev/null
+++ b/extra/gupnp-dlna/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 180467 2013-03-21 22:39:20Z heftig $
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=gupnp-dlna
+pkgver=0.6.6
+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=('gstreamer0.10-base-plugins')
+makedepends=('gobject-introspection')
+options=('!libtool')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('82a1e75c398379567a5a5db9acd19bd01334b4f0053c8a166a77bc09bf0ca047')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+}