diff options
Diffstat (limited to 'extra/libnice/PKGBUILD')
-rw-r--r-- | extra/libnice/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/libnice/PKGBUILD b/extra/libnice/PKGBUILD new file mode 100644 index 000000000..c9f09791c --- /dev/null +++ b/extra/libnice/PKGBUILD @@ -0,0 +1,26 @@ +# $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.0.13 +pkgrel=3 +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=('gstreamer0.10') +options=('!libtool') +source=(http://nice.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz) +md5sums=('e5b9f799a57cb939ea2658ec35253ab9') + +build() { +# export CFLAGS="$CFLAGS -fno-strict-aliasing" + + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --disable-static + make + #make sure that all tests pass +# make check + make DESTDIR=${pkgdir} install +} |