wok view openconnect/receipt @ rev 21746

updated qrencode and qrencode-dev again (3.1.1 -> 4.0.2)
author Hans-G?nter Theisgen
date Fri Jun 14 16:14:44 2019 +0100 (2019-06-14)
parents eeba7ab1dffe
children 2924eb0cff19
line source
1 # SliTaz package receipt.
3 PACKAGE="openconnect"
4 VERSION="8.03"
5 CATEGORY="network"
6 SHORT_DESC="A client for Cisco's AnyConnect SSL VPN."
7 MAINTAINER="samuel_trassare@yahoo.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://www.infradead.org/openconnect/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.infradead.org/pub/$PACKAGE/$TARBALL"
14 DEPENDS="libxml2 openssl vpnc"
15 # Will require libtirpc when glibc is upgraded to 2.14.
16 BUILD_DEPENDS="libxml2-dev openssl-dev pkg-config vpnc zlib"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/sbin
30 cp -a $install/usr/sbin/openconnect $fs/usr/sbin
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*so* $fs/usr/lib
34 }