diff options
| author | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:12:11 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:12:11 +0200 |
| commit | 0c8d18524963c09f1c6ea8ed89bf7c5503f155ad (patch) | |
| tree | ec22ca5e397730986d0d2296e61421dd5f058083 /aur | |
| parent | 18502ca679efa43f5adc66d5942f13bc8879f76e (diff) | |
| parent | 588bbfed9f2ac661b9359d000ec2d9ff8657f5ed (diff) | |
Add 'aur/yate/' from commit '588bbfed9f2ac661b9359d000ec2d9ff8657f5ed'
git-subtree-dir: aur/yate
git-subtree-mainline: 18502ca679efa43f5adc66d5942f13bc8879f76e
git-subtree-split: 588bbfed9f2ac661b9359d000ec2d9ff8657f5ed
Diffstat (limited to 'aur')
| -rw-r--r-- | aur/yate/.SRCINFO | 19 | ||||
| -rw-r--r-- | aur/yate/PKGBUILD | 33 |
2 files changed, 52 insertions, 0 deletions
diff --git a/aur/yate/.SRCINFO b/aur/yate/.SRCINFO new file mode 100644 index 0000000..e791576 --- /dev/null +++ b/aur/yate/.SRCINFO @@ -0,0 +1,19 @@ +pkgbase = yate + pkgdesc = Next-generation telephony engine + pkgver = 5.5.0 + pkgrel = 1 + url = http://yate.null.ro + arch = i686 + arch = x86_64 + license = GPL + depends = speex + depends = gsm + depends = postgresql-libs + depends = libmysqlclient + depends = alsa-lib + options = !makeflags + source = http://yate.null.ro/tarballs/yate5/yate-5.5.0-1.tar.gz + sha256sums = a9fc472df082e92d578efa3de54689e10ee1a24fdd67a9cc928db7c2e1568676 + +pkgname = yate + diff --git a/aur/yate/PKGBUILD b/aur/yate/PKGBUILD new file mode 100644 index 0000000..e3285a9 --- /dev/null +++ b/aur/yate/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F +# Contributor: Yejun Yang <yejunx AT gmail DOT com> +# Contributor: Biru Ionut <ionut@archlinux.ro> + +pkgname=yate +pkgver=5.5.0 +pkgrel=1 +pkgdesc="Next-generation telephony engine" +arch=('i686' 'x86_64') +url="http://yate.null.ro" +license=('GPL') +depends=('speex' 'gsm' 'postgresql-libs' 'libmysqlclient' 'alsa-lib') +source=("http://yate.null.ro/tarballs/yate5/yate-${pkgver}-1.tar.gz") +options=(!makeflags) +sha256sums=('a9fc472df082e92d578efa3de54689e10ee1a24fdd67a9cc928db7c2e1568676') + +build() { + cd $srcdir/${pkgname} + export LDFLAGS="${LDFLAGS//-Wl,--as-needed}" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --with-libpq \ + --with-mysql \ + --without-openh323 + make +} + +package(){ + cd $srcdir/${pkgname} + make DESTDIR=$pkgdir install +} + +# vim:set ts=2 sw=2 et: |
