diff options
Diffstat (limited to 'extra/gssdp/PKGBUILD')
-rw-r--r-- | extra/gssdp/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/gssdp/PKGBUILD b/extra/gssdp/PKGBUILD new file mode 100644 index 000000000..e37c1ef09 --- /dev/null +++ b/extra/gssdp/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 139341 2011-10-01 18:58:54Z ibiru $ +# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> +# Contributor: György Balló <ballogy@freestart.hu> + +pkgname=gssdp +pkgver=0.10.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://gupnp.org/sites/all/files/sources/$pkgname-$pkgver.tar.gz) +sha256sums=('94de92bb4f7906ed2f047b0146a3b21d53d09908fe1f0149484f61c6afc598ea') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-static + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install +} |