wok view httrack/receipt @ rev 14774

Up xorg-libXi (1.7.1.901), see http://www.x.org/wiki/Development/Security/Advisory-2013-05-23
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 30 10:36:53 2013 +0200 (2013-06-30)
parents 48c15e8cdc68
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="httrack"
4 VERSION="3.45.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="An easy-to-use offline browser utility."
7 MAINTAINER="slaxemulator@gmail.com"
8 WEB_SITE="http://www.httrack.com/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://download.httrack.com/$TARBALL"
12 DEPENDS="bash zlib"
13 BUILD_DEPENDS="zlib-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS && make -j1 && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib/httrack
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 cp -a $install/usr/lib/httrack/*.so* $fs/usr/lib/httrack
29 cp -a $install/usr/share $fs/usr
30 rm -rf $fs/usr/share/man
31 rm -rf $fs/usr/share/doc
32 }