wok annotate dotconf/receipt @ rev 10924

wikiss/wkp_Upload: fix data links
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 11 23:01:53 2011 +0200 (2011-08-11)
parents
children eb8067417980
rev   line source
paul@4889 1 # SliTaz package receipt.
paul@4889 2
paul@4889 3 PACKAGE="dotconf"
paul@4889 4 VERSION="1.0.13"
paul@4889 5 CATEGORY="development"
paul@4889 6 SHORT_DESC="Configuration file parser library."
paul@4889 7 MAINTAINER="paul@slitaz.org"
paul@4889 8 DEPENDS=""
paul@4889 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@4889 10 WEB_SITE="http://www.azzit.de/dotconf/"
paul@4889 11 WGET_URL="http://www.azzit.de/dotconf/download/v1.0/$TARBALL"
paul@4889 12
paul@4889 13 # Rules to configure and make the package.
paul@4889 14 compile_rules()
paul@4889 15 {
paul@4889 16 cd $src
paul@4889 17 ./configure \
paul@4889 18 --prefix=/usr \
paul@4889 19 --infodir=/usr/share/info \
paul@4889 20 --mandir=/usr/share/man \
paul@4889 21 $CONFIGURE_ARGS &&
paul@4889 22 make && make DESTDIR=$PWD/_pkg install
paul@4889 23 }
paul@4889 24
paul@4889 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4889 26 genpkg_rules()
paul@4889 27 {
paul@4889 28 mkdir -p $fs/usr/lib
paul@4889 29 cp -a $_pkg/usr/bin $fs/usr
paul@4889 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
paul@4889 31 cp -a $_pkg/usr/share $fs/usr
paul@4889 32 }
paul@4889 33