summaryrefslogtreecommitdiff
path: root/social/asterisk/PKGBUILD
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-07-03 20:26:13 -0300
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-07-03 20:26:13 -0300
commitc4dfd2dd26c974e2c0757c3a1ad71b2fc4d72c86 (patch)
tree3b2b224247d684045bcaca547b10eee20599ee94 /social/asterisk/PKGBUILD
parentaddf0caba72d862bf5b9f7f02cb2c1663c6ae7c5 (diff)
parentfd0908ce8b8a8956442327e7c7e2b2433ec84efb (diff)
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'social/asterisk/PKGBUILD')
-rw-r--r--social/asterisk/PKGBUILD10
1 files changed, 5 insertions, 5 deletions
diff --git a/social/asterisk/PKGBUILD b/social/asterisk/PKGBUILD
index 896d5bacf..fe8204d0a 100644
--- a/social/asterisk/PKGBUILD
+++ b/social/asterisk/PKGBUILD
@@ -1,7 +1,7 @@
# Contributor: Alessio Biancalana <dottorblaster@gmail.com>
pkgname=asterisk
-pkgver=10.9.0
+pkgver=11.0.1
pkgrel=1
pkgdesc="A complete PBX solution"
arch=('i686' 'x86_64')
@@ -15,20 +15,20 @@ source=(http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-$
asterisk \
asterisk.logrotated)
install=$pkgname.install
-md5sums=('2fb85dc753584ac13692c27f9749c6cb'
+md5sums=('3e80a5cef7b0f8808578efcc84c39fd7'
'59146273738605f1e011d8e7bed3561a'
'486e07a0a1405ea25ec5b1736034653e')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
- make
+ make || return 1
}
package(){
cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
- make DESTDIR=${pkgdir} samples
+ make DESTDIR=${pkgdir} install || return 1
+ make DESTDIR=${pkgdir} samples || return 1
(cd ${pkgdir}/etc/asterisk
# for i in `ls`; do [ $i = "asterisk.conf" ] || mv $i $i.default; done