wok view radiusclient-ng/receipt @ rev 15600

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 15:25:09 2013 +0000 (2013-12-05)
parents 74651f1af3cd
children f534ca5670d7
line source
1 # SliTaz package receipt.
3 PACKAGE="radiusclient-ng"
4 VERSION="0.5.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="RADIUS Client Library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://developer.berlios.de/projects/$PACKAGE/"
11 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --sysconfdir=/etc \
19 --mandir=/usr/share/man $CONFIGURE_ARGS
20 make
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/etc $fs
29 cp -a $install/usr/sbin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }