diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-20 09:57:25 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-20 09:57:25 +0000 |
commit | 839ddede45c93d32b688dd2a03ac5e796995b22d (patch) | |
tree | 29d470009285f761eede78047abf18b5a7a70f4e /main/kamailio/APKBUILD | |
parent | e0b2dce29982f1656e19ed304f9a071093928b46 (diff) | |
download | aports-839ddede45c93d32b688dd2a03ac5e796995b22d.tar.bz2 aports-839ddede45c93d32b688dd2a03ac5e796995b22d.tar.xz |
main/kamailio: fix path
fixes #379
Diffstat (limited to 'main/kamailio/APKBUILD')
-rw-r--r-- | main/kamailio/APKBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/main/kamailio/APKBUILD b/main/kamailio/APKBUILD index fe066f4663..123de89b76 100644 --- a/main/kamailio/APKBUILD +++ b/main/kamailio/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=kamailio pkgver=3.0.2 -pkgrel=4 +pkgrel=5 pkgdesc="Open Source SIP Server" url="http://www.kamailio.org/" pkgusers="kamailio" @@ -65,7 +65,14 @@ build() { cd "$_builddir" # workaround parallel build issue - make -C lib/kcore strcommon.o || return 1 + make LOCALBASE=/usr \ + cfg_target=/etc/kamailio/ \ + MODS_MYSQL=yes \ + MODS_PCRE=yes \ + MODS_RADIUS= \ + TLS= \ + include_modules="$_modules" \ + -C lib/kcore strcommon.o || return 1 make LOCALBASE=/usr \ cfg_target=/etc/kamailio/ \ |