wok view mISDNuser/receipt @ rev 1560

glibc: fix ld.so.conf path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 13 09:25:04 2008 +0000 (2008-10-13)
parents 86727cae3a5d
children 04a7e4dead15
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 [ -f done.Makefile.u ] || patch -p1 < ../stuff/Makefile.u
19 touch done.Makefile.u
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 # Package all mISDNuser pkgs
33 for i in $(cd $WOK; ls -d mISDNuser-*)
34 do
35 tazwok genpkg $i
36 done
37 }