wok view dahdi-tools/receipt @ rev 9847

Up: libgphoto2 to 2.4.11.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 15 21:17:14 2011 +0000 (2011-05-15)
parents aa6aabdbbe2f
children 24263dfa9f84
line source
1 # SliTaz package receipt.
3 PACKAGE="dahdi-tools"
4 VERSION="2.4.0"
5 CATEGORY="network"
6 SHORT_DESC="Digium Asterisk Hardware Device Interface userland tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.asterisk.org/"
10 WGET_URL="http://downloads.asterisk.org/pub/telephony/$PACKAGE/releases/$TARBALL"
11 DEPENDS="libusb-compat newt libpri"
12 BUILD_DEPENDS="dahdi-linux ppp gtk+-dev"
13 CONFIG_FILES="/etc/dahdi/"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --exec-prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make -j1 &&
26 make -j1 -C ppp &&
27 make -j1 DESTDIR=$PWD/_pkg install &&
28 make -j1 DESTDIR=$PWD/_pkg -C ppp install &&
29 make -j1 DESTDIR=$PWD/_pkg config
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/etc $fs/usr/lib $fs/usr/share
36 cp -a $_pkg/etc/dahdi $fs/etc
37 cp -a $_pkg/usr/sbin $fs/usr
38 cp -a $_pkg/usr/lib/lib*.so* $fs/usr/lib
39 cp -a $_pkg/usr/share/dahdi $fs/usr/share
40 }