wok annotate chmlib/receipt @ rev 4933

add/improve TAGS c* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 12:15:27 2010 +0000 (2010-02-16)
parents 6de8a52d7266
children 372af391b61c
rev   line source
erjo@1306 1 # SliTaz package receipt.
erjo@1306 2
erjo@1306 3 PACKAGE="chmlib"
erjo@1306 4 VERSION="0.39"
erjo@1306 5 CATEGORY="misc"
jozee@4933 6 SHORT_DESC="library for dealing with CHM format or windows help files"
erjo@1306 7 MAINTAINER="allan316@gmail.com"
erjo@1306 8 DEPENDS=""
erjo@1306 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@1306 10 WEB_SITE="http://www.jedrea.com/chmlib"
erjo@1306 11 WGET_URL="http://www.jedrea.com/chmlib/$TARBALL"
jozee@4933 12 TAGS="CHM windows"
jozee@4933 13
erjo@1306 14 # Rules to configure and make the package.
erjo@1306 15 compile_rules()
erjo@1306 16 {
erjo@1306 17 cd $src
erjo@1306 18 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@1306 19 --mandir=/usr/share/man $CONFIGURE_ARGS
erjo@1306 20 make
erjo@1306 21 make DESTDIR=$PWD/_pkg install
erjo@1306 22 }
erjo@1306 23
erjo@1306 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1306 25 genpkg_rules()
erjo@1306 26 {
erjo@1306 27 mkdir -p $fs/usr/lib
erjo@1306 28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/
erjo@1306 29 }