wok view radiusclient-ng/receipt @ rev 9961

deadbeef: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 18 15:43:27 2011 +0200 (2011-05-18)
parents 2650aaa6a59e
children 3b4e4318134e
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://developer.berlios.de/projects/$PACKAGE/"
10 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --sysconfdir=/etc \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/etc $fs
28 cp -a $_pkg/usr/sbin $fs/usr
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }