wok-next view tacacs+/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents 148fe453320b
children
line source
1 # SliTaz package receipt.
3 PACKAGE="tacacs+"
4 VERSION="F4.0.4.18"
5 CATEGORY="misc"
6 SHORT_DESC="Authentication server for cisco devices"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="http://www.shrubbery.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.shrubbery.net/pub/tac_plus/$TARBALL"
14 BUILD_DEPENDS="libwrap-dev pam-dev perl"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$install MKDIRPROG="mkdir -p" install
24 }
26 genpkg_rules() {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 DEPENDS="libwrap pam"
30 }