wok view ppp-pam/receipt @ rev 25601

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 16 18:06:38 2023 +0000 (10 months ago)
parents ac8ca9758df1
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ppp-pam"
4 VERSION="2.4.7"
5 CATEGORY="network"
6 SHORT_DESC="Implements the Point-to-Point Protocol (PPP) with PAM support."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD GPL"
9 SOURCE="ppp"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://ppp.samba.org/"
12 WGET_URL="https://github.com/paulusmack/ppp/archive/$TARBALL"
13 CONFIG_FILES="/etc/ppp/options"
14 SECRET_FILES="/etc/ppp/*secrets"
16 DEPENDS="pam"
17 BUILD_DEPENDS="wget pam pam-dev"
18 PROVIDE="ppp:pam"
20 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
24 sed '/tag\//!d;s|.*tag/[a-z-]*||;s|".*||;q'
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 sed -i 's/#USE_PAM/USE_PAM/' pppd/Makefile.linux
31 ./configure --prefix=/usr \
32 $CONFIGURE_ARGS &&
33 make &&
34 make DESTDIR=$DESTDIR/usr install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr
41 cp -a $install/usr/sbin $fs/usr
42 [ -d "$install/usr/lib" ] && cp -a $install/usr/lib $fs/usr
43 }
45 pre_remove()
46 {
47 tazpkg get-install ${PACKAGE%-pam}
48 }