wok view libconfuse/receipt @ rev 3933

mirror-tools: rename /etc/tazwok.conf
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 20 13:35:04 2009 +0200 (2009-08-20)
parents
children 45e78d0e94fd
line source
1 # SliTaz package receipt.
3 PACKAGE="libconfuse"
4 SOURCE="confuse"
5 VERSION="2.6"
6 CATEGORY="misc"
7 SHORT_DESC="Configuration file parser library."
8 MAINTAINER="mallory@sweetpeople.org"
9 DEPENDS=""
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.nongnu.org/confuse/"
12 WGET_URL="http://bzero.se/$SOURCE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make && 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/include $fs/usr
31 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
32 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
33 }