wok annotate radiusclient-ng/receipt @ rev 24563

updated freeglut and freeglut-dev (3.2.1 -> 3.2.2)
author Hans-G?nter Theisgen
date Fri Feb 25 17:38:01 2022 +0100 (2022-02-25)
parents 8dd8bab3f0ca
children a77f941b8df6
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@24353 13 # What is the latest version available today?
pascal@24353 14 current_version()
pascal@24353 15 {
pascal@24353 16 wget -O - https://sourceforge.net/projects/radiusclient-ng.berlios/files/ 2>/dev/null | \
pascal@24353 17 sed '/scope="row/!d;s|.*/radiusclient-ng-||;s|.tar.*||;q'
pascal@24353 18 }
pascal@24353 19
pascal@1176 20 # Rules to configure and make the package.
pascal@1176 21 compile_rules()
pascal@1176 22 {
pascal@1176 23 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@4210 24 --sysconfdir=/etc \
pascal@1176 25 --mandir=/usr/share/man $CONFIGURE_ARGS
pascal@1176 26 make
pascal@18423 27 make -j 1 DESTDIR=$DESTDIR install
pascal@1176 28 }
pascal@1176 29
pascal@1176 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1176 31 genpkg_rules()
pascal@1176 32 {
pascal@1176 33 mkdir -p $fs/usr/lib
pascal@15593 34 cp -a $install/etc $fs
pascal@15593 35 cp -a $install/usr/sbin $fs/usr
pascal@15593 36 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@1176 37 }
pascal@1176 38