wok view tacacs+/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 b3e8eb320061
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="tacacs+"
4 VERSION="4.0.4.28"
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/tac_plus"
11 TARBALL="${PACKAGE/+/}-F$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.shrubbery.net/pub/tac_plus/$TARBALL"
14 DEPENDS="libwrap pam"
15 BUILD_DEPENDS="libwrap-dev pam-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/sbin $fs/usr
36 }