wok annotate radiusclient-ng/receipt @ rev 20724
Update some WEB_SITE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Feb 08 17:33:45 2019 +0100 (2019-02-08) |
parents | f534ca5670d7 |
children | 3105f866bc3e |
rev | line source |
---|---|
pascal@1176 | 1 # SliTaz package receipt. |
pascal@1176 | 2 |
pascal@1176 | 3 PACKAGE="radiusclient-ng" |
pascal@1176 | 4 VERSION="0.5.6" |
pascal@1176 | 5 CATEGORY="system-tools" |
pascal@1176 | 6 SHORT_DESC="RADIUS Client Library." |
pascal@1176 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15593 | 8 LICENSE="BSD" |
pascal@1176 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20672 | 10 WEB_SITE="https://sourceforge.net/projects/radiusclient-ng.berlios/" |
pascal@1176 | 11 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL" |
pascal@1176 | 12 |
pascal@1176 | 13 # Rules to configure and make the package. |
pascal@1176 | 14 compile_rules() |
pascal@1176 | 15 { |
pascal@1176 | 16 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@4210 | 17 --sysconfdir=/etc \ |
pascal@1176 | 18 --mandir=/usr/share/man $CONFIGURE_ARGS |
pascal@1176 | 19 make |
pascal@18423 | 20 make -j 1 DESTDIR=$DESTDIR install |
pascal@1176 | 21 } |
pascal@1176 | 22 |
pascal@1176 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1176 | 24 genpkg_rules() |
pascal@1176 | 25 { |
pascal@1176 | 26 mkdir -p $fs/usr/lib |
pascal@15593 | 27 cp -a $install/etc $fs |
pascal@15593 | 28 cp -a $install/usr/sbin $fs/usr |
pascal@15593 | 29 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@1176 | 30 } |
pascal@1176 | 31 |