wok view chmlib/receipt @ rev 23275

updated par2 (0.8.0 -> 0.8.1)
author Hans-G?nter Theisgen
date Sat Mar 28 15:42:00 2020 +0100 (2020-03-28)
parents 372af391b61c
children 2a0479881723
line source
1 # SliTaz package receipt.
3 PACKAGE="chmlib"
4 VERSION="0.40"
5 CATEGORY="misc"
6 SHORT_DESC="library for dealing with CHM format or windows help files"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.jedrea.com/chmlib"
11 WGET_URL="http://www.jedrea.com/chmlib/$TARBALL"
12 TAGS="CHM windows"
14 DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS
22 make
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib/
31 }