diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-27 12:30:14 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-27 12:30:14 -0300 |
commit | ac84c0a6f7b12fcf77af9b7ed5c71a3949a35ec3 (patch) | |
tree | 1d06aac4a3c6b42643952e6aad303b9179669f5b /extra/ortp/PKGBUILD | |
parent | 259debb981a976da83ba1c9b93fb6e9ec1a68fe8 (diff) | |
parent | 342100843ef3e4379443c526403fac1b1cb6416a (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/jack2/PKGBUILD
extra/icedtea-web/PKGBUILD
extra/ntp/PKGBUILD
extra/ortp/PKGBUILD
Diffstat (limited to 'extra/ortp/PKGBUILD')
-rw-r--r-- | extra/ortp/PKGBUILD | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/extra/ortp/PKGBUILD b/extra/ortp/PKGBUILD index c36da3a25..1fde192fd 100644 --- a/extra/ortp/PKGBUILD +++ b/extra/ortp/PKGBUILD @@ -1,24 +1,26 @@ -# $Id: PKGBUILD 117400 2011-04-01 15:13:40Z andrea $ -# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# $Id: PKGBUILD 145635 2011-12-25 10:59:41Z andrea $ +# Maintainer: +# Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> # Contributor: William Rea <sillywilly@gmail.com> pkgname=ortp -pkgver=0.16.5 +pkgver=0.18.0 pkgrel=1 pkgdesc="A Real-time Transport Protocol (RTP) library" arch=('i686' 'x86_64' 'mips64el') url="http://www.linphone.org/index.php/eng/code_review/ortp" license=('LGPL') -depends=('openssl') +depends=('glibc') options=('!libtool') -source=("http://ftp.cc.uoc.gr/mirrors/nongnu.org/linphone/${pkgname}/sources/${pkgname}-${pkgver}.tar.gz") -md5sums=('94546901d14b85f97342f4ecf39489b1') +#source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/sources/${pkgname}-${pkgver}.tar.gz") +source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('cc319356d2b548e5777feef90ae23bac') build() { cd ${srcdir}/${pkgname}-${pkgver} - # Don't turn warnings into errors, it's bad. - ./configure --prefix=/usr --disable-strict + ./autogen.sh + ./configure --prefix=/usr make } |