wok view mISDNuser/receipt @ rev 1233

Add libxml2-python
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 11 08:52:14 2008 +0000 (2008-08-11)
parents
children 65d3dfc87776
line source
1 # SliTaz package receipt.
3 PACKAGE="mISDNuser"
4 VERSION="1_1_7_2"
5 CATEGORY="system-tools"
6 SHORT_DESC="beronet isdn drivers userland tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.misdn.org/"
10 WGET_URL="${WEB_SITE}downloads/releases/$TARBALL"
11 DEPENDS="mISDN"
12 BUILD_DEPENDS="mISDN"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -p1 < ../stuff/Makefile.u
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 # Package all mISDNuser pkgs
32 for i in $(cd $WOK; ls -d mISDNuser-*)
33 do
34 tazwok genpkg $i
35 done
36 }