diff options
Diffstat (limited to 'testing/freeswitch/APKBUILD')
-rw-r--r-- | testing/freeswitch/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/freeswitch/APKBUILD b/testing/freeswitch/APKBUILD index 7b1a4ea909..fd024b6448 100644 --- a/testing/freeswitch/APKBUILD +++ b/testing/freeswitch/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Michael Mason <ms13sp@gmail.com> pkgname=freeswitch pkgver=1.0.4 -pkgrel=2 +pkgrel=3 pkgdesc="A communications platform written in C from the ground up" url="http://www.freeswitch.org" license="GPL" @@ -18,6 +18,7 @@ source="http://files.freeswitch.org/freeswitch-$pkgver.tar.gz freeswitch.pre-install freeswitch.post-deinstall " +options="!strip" build() { cd "$srcdir/$pkgname-$pkgver" @@ -26,6 +27,7 @@ build() { # i think our max cmd len is 32768 # by specifying it here we save our selves from some CPU cycles export lt_cv_sys_max_cmd_len=8192 + export CFLAGS="-g" ./configure --prefix=/usr \ --sysconfdir=/etc/freeswitch \ |