wok view httrack/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents 40d66aabe862
children af8d823a3077
line source
1 # SliTaz package receipt.
3 PACKAGE="httrack"
4 VERSION="3.49.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="An easy-to-use offline browser utility."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.httrack.com/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://mirror.httrack.com/$TARBALL"
13 DEPENDS="bash zlib libssl"
14 BUILD_DEPENDS="zlib-dev openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
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 }