summaryrefslogtreecommitdiff
path: root/testing/libnice/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/libnice/PKGBUILD')
-rw-r--r--testing/libnice/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/libnice/PKGBUILD b/testing/libnice/PKGBUILD
new file mode 100644
index 000000000..05890543b
--- /dev/null
+++ b/testing/libnice/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 500 2009-08-01 11:44:28Z ibiru $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+# Contributor: William Díaz <wdiaz@archlinux.us>
+
+pkgname=libnice
+pkgver=0.1.3
+pkgrel=1
+pkgdesc="An implementation of the IETF's draft ICE (for p2p UDP data streams)"
+arch=('i686' 'x86_64')
+url="http://nice.freedesktop.org"
+license=('LGPL')
+depends=('glib2')
+makedepends=('gstreamer' 'gstreamer0.10')
+optdepends=('gstreamer' 'gstreamer0.10')
+options=('!libtool')
+source=(http://nice.freedesktop.org/releases/$pkgname-$pkgver.tar.gz)
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+md5sums=('1a0907605f852dcda32a3b3daf38d36c')