wok view tcpcrypt/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents aa1584474883
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="tcpcrypt"
4 VERSION="0.5"
5 CATEGORY="network"
6 SHORT_DESC="Attempts to encrypt (almost) all of your network traffic."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/scslab/tcpcrypt" # http://tcpcrypt.org/
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
13 DEPENDS="libcrypto libnetfilter_queue libnfnetlink libcap libmnl iptables"
14 BUILD_DEPENDS="autoconf automake libtool m4 openssl-dev libpcap-dev libmnl \
15 libnetfilter_conntrack-dev libnetfilter_queue-dev libnfnetlink-dev libcap-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./bootstrap.sh
21 ./configure --prefix=/usr $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 $fs/var/run/tcpcryptd
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $src/launch_tcpcryptd.sh $fs/usr/bin
33 }