wok view dotconf/receipt @ rev 11654

Up: tor (0.2.2.35) Security fixes
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 12 00:05:34 2012 +0100 (2012-02-12)
parents
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="dotconf"
4 VERSION="1.0.13"
5 CATEGORY="development"
6 SHORT_DESC="Configuration file parser library."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.azzit.de/dotconf/"
11 WGET_URL="http://www.azzit.de/dotconf/download/v1.0/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && 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 cp -a $_pkg/usr/share $fs/usr
32 }