summaryrefslogtreecommitdiff
path: root/extra/libnice/PKGBUILD
blob: c9f09791cc3ee9324e307ffe3db027109a63359a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
}