wok annotate chmlib/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 372af391b61c
children 2a0479881723
rev   line source
erjo@1306 1 # SliTaz package receipt.
erjo@1306 2
erjo@1306 3 PACKAGE="chmlib"
slaxemulator@6219 4 VERSION="0.40"
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"
pascal@15579 8 LICENSE="LGPL2.1"
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
pascal@15579 14 DEPENDS=""
pascal@15579 15
erjo@1306 16 # Rules to configure and make the package.
erjo@1306 17 compile_rules()
erjo@1306 18 {
erjo@1306 19 cd $src
erjo@1306 20 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@1306 21 --mandir=/usr/share/man $CONFIGURE_ARGS
erjo@1306 22 make
pascal@15579 23 make DESTDIR=$DESTDIR install
erjo@1306 24 }
erjo@1306 25
erjo@1306 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1306 27 genpkg_rules()
erjo@1306 28 {
erjo@1306 29 mkdir -p $fs/usr/lib
pascal@15579 30 cp -a $install/usr/lib/*.so* $fs/usr/lib/
erjo@1306 31 }