wok view dotconf/receipt @ rev 16694

xorg-kbproto: typo in depends
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 23 11:56:36 2014 +0300 (2014-05-23)
parents 94a6af24a504
children d3eb5f4b53ea
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 LICENSE="LGPL2.1"
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 DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/share $fs/usr
34 }