diff options
author | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-03-05 10:04:28 +0000 |
---|---|---|
committer | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-03-05 10:04:28 +0000 |
commit | 411a5800a5241d7cd15801dc2f2984b477576759 (patch) | |
tree | 99a186ae1e060b6390dbf0b437e663cca521c94c | |
parent | 3ea3c5d3e1709c22c74b93cbfa601fecab9055e2 (diff) |
packages/asterisk/asterisk_1.2.14.bb: Several fixes
Q&A issues move .debug out of asterisk packages
Add asterisk app to 'telephony' section instead of Base
Set correct working dir
Make sure that all asterisk headers get copied to staging/include
-rw-r--r-- | packages/asterisk/asterisk_1.2.14.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/asterisk/asterisk_1.2.14.bb b/packages/asterisk/asterisk_1.2.14.bb index 3378f6e48b..64dac59199 100644 --- a/packages/asterisk/asterisk_1.2.14.bb +++ b/packages/asterisk/asterisk_1.2.14.bb @@ -2,13 +2,16 @@ DESCRIPTION="The Asterisk open source software PBX" HOMEPAGE="www.asterisk.org" LICENSE="GPL" DEPENDS="ncurses zlib openssl curl alsa-lib libogg libvorbis popt" -PR = "r2" +SECTION = "telephony" +PR = "r3" SRC_URI="http://ftp.digium.com/pub/asterisk/releases/asterisk-${PV}.tar.gz \ file://uclibc-compat-getloadavg.patch;patch=1 \ file://uclibc-dsn.patch;patch=1 \ file://asterisk.patch;patch=1" +S = "${WORKDIR}/asterisk-${PV}" + export CROSS_COMPILE="${CCACHE}${HOST_PREFIX}" export CROSS_COMPILE_BIN="${STAGING_BINDIR_CROSS}" @@ -35,3 +38,6 @@ do_stage () { } +FILES_${PN}-dbg += "${libdir}/asterisk/modules/.debug" +FILES_${PN}-dbg += "/var/lib/asterisk/agi-bin/.debug" + |