wok view openconnect/receipt @ rev 21605
Up opus (1.3.1)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 23 13:26:20 2019 +0200 (2019-05-23) |
parents | 600aaedb561d |
children | f81eab2e76aa |
line source
1 # SliTaz package receipt.
3 PACKAGE="openconnect"
4 VERSION="4.07"
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="http://www.infradead.org/openconnect/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="ftp://ftp.infradead.org/pub/openconnect/$TARBALL"
13 DEPENDS="vpnc openssl libxml2"
14 # Will require libtirpc when glibc is upgraded to 2.14.
15 BUILD_DEPENDS="openssl-dev zlib pkg-config libxml2-dev vpnc"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/sbin
29 cp -a $install/usr/sbin/openconnect $fs/usr/sbin
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*so* $fs/usr/lib
33 }