summaryrefslogtreecommitdiff
path: root/extra/gssdp/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/gssdp/PKGBUILD')
-rw-r--r--extra/gssdp/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/gssdp/PKGBUILD b/extra/gssdp/PKGBUILD
new file mode 100644
index 000000000..aa78f6b01
--- /dev/null
+++ b/extra/gssdp/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 139610 2011-10-03 19:05:04Z heftig $
+# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
+# Contributor: György Balló <ballogy@freestart.hu>
+
+pkgname=gssdp
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="A GObject-based API for handling resource discovery and announcement over SSDP"
+arch=('i686' 'x86_64')
+url="http://gupnp.org/"
+license=('LGPL')
+depends=('libsoup')
+makedepends=('gobject-introspection' 'gtk2' 'gtk-doc')
+optdepends=('gtk2: gssdp-device-sniffer')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('7f02903989b4ac7cfb7508898706a5b4a01c9ace2f6345bd96bf8a3faa30ae1a')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+}