wok rev 22001
updated tacacs+ (4.0.4.18 -> 4.0.4.28)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Oct 18 16:24:49 2019 +0100 (2019-10-18) |
parents | 7491bbeb0220 |
children | 0462682e79b7 |
files | tacacs+/receipt |
line diff
1.1 --- a/tacacs+/receipt Fri Oct 18 16:04:25 2019 +0100 1.2 +++ b/tacacs+/receipt Fri Oct 18 16:24:49 2019 +0100 1.3 @@ -1,13 +1,14 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="tacacs+" 1.7 -VERSION="F4.0.4.18" 1.8 +VERSION="4.0.4.28" 1.9 CATEGORY="misc" 1.10 -SHORT_DESC="authentication server for cisco devices" 1.11 +SHORT_DESC="Authentication server for cisco devices." 1.12 MAINTAINER="allan316@gmail.com" 1.13 LICENSE="MIT" 1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 -WEB_SITE="http://www.shrubbery.net" 1.16 +WEB_SITE="http://www.shrubbery.net/tac_plus" 1.17 + 1.18 +TARBALL="${PACKAGE/+/}-F$VERSION.tar.gz" 1.19 WGET_URL="ftp://ftp.shrubbery.net/pub/tac_plus/$TARBALL" 1.20 1.21 DEPENDS="libwrap pam" 1.22 @@ -16,18 +17,20 @@ 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 { 1.26 - ./configure \ 1.27 - --prefix=/usr \ 1.28 - --infodir=/usr/share/info \ 1.29 - --mandir=/usr/share/man \ 1.30 + ./configure \ 1.31 + --prefix=/usr \ 1.32 + --infodir=/usr/share/info \ 1.33 + --mandir=/usr/share/man \ 1.34 $CONFIGURE_ARGS && 1.35 - make && make -j 1 DESTDIR=$DESTDIR install 1.36 + make && 1.37 + make DESTDIR=$DESTDIR install 1.38 } 1.39 1.40 # Rules to gen a SliTaz package suitable for Tazpkg. 1.41 genpkg_rules() 1.42 { 1.43 mkdir -p $fs/usr 1.44 - cp -a $install/usr/bin $fs/usr 1.45 + 1.46 + cp -a $install/usr/bin $fs/usr 1.47 + cp -a $install/usr/sbin $fs/usr 1.48 } 1.49 -