wok annotate dotconf/receipt @ rev 21177

code2: update website
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 01 19:27:16 2019 +0200 (2019-04-01)
parents d3eb5f4b53ea
children 8609ecf381cf
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"
pascal@15579 8 LICENSE="LGPL2.1"
paul@4889 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20682 10 WEB_SITE="https://github.com/williamh/dotconf"
pascal@17869 11 WGET_URL="http://www.azzit.de/dotconf/download/v${VERSION%.*}/$TARBALL"
paul@4889 12
pascal@15579 13 DEPENDS=""
pascal@15579 14
paul@4889 15 # Rules to configure and make the package.
paul@4889 16 compile_rules()
paul@4889 17 {
paul@4889 18 ./configure \
paul@4889 19 --prefix=/usr \
paul@4889 20 --infodir=/usr/share/info \
paul@4889 21 --mandir=/usr/share/man \
paul@4889 22 $CONFIGURE_ARGS &&
pascal@15579 23 make && make DESTDIR=$DESTDIR install
paul@4889 24 }
paul@4889 25
paul@4889 26 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4889 27 genpkg_rules()
paul@4889 28 {
paul@4889 29 mkdir -p $fs/usr/lib
pascal@15579 30 cp -a $install/usr/bin $fs/usr
pascal@15579 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15579 32 cp -a $install/usr/share $fs/usr
paul@4889 33 }