wok-next view tor/receipt @ rev 20494
make-slitaz-icons: in multiple choice for 16px request: if 16px and scalable icons both are available, try to choose 16px one, but not the first caught.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Mar 13 23:17:56 2018 +0200 (2018-03-13) |
parents | e6615350078d |
children | d43bf7aae921 |
line source
1 # SliTaz package receipt.
3 PACKAGE="tor"
4 VERSION="0.2.8.8"
5 CATEGORY="network"
6 SHORT_DESC="An anonymizing overlay network for TCP."
7 MAINTAINER="0dddba11@googlemail.com"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.torproject.org/"
11 WGET_URL="https://www.torproject.org/dist/$TARBALL"
13 DEPENDS="libevent openssl"
14 BUILD_DEPENDS="wget libevent-dev openssl-dev perl zlib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 #cp -a $install/usr/share/tor $fs/usr/share
32 # config file.
33 cp -a $install/etc $fs
34 mv $fs/etc/tor/torrc.sample $fs/etc/tor/torrc
35 }