wok annotate ppp-pam/receipt @ rev 24667
updated inotify-tools (3.20.2.2 -> 3.22.1.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Mar 11 16:18:25 2022 +0100 (2022-03-11) |
parents | 5ea0ce1cecc0 |
children | 0262035dc1e7 |
rev | line source |
---|---|
pascal@2225 | 1 # SliTaz package receipt. |
pascal@2225 | 2 |
pascal@2225 | 3 PACKAGE="ppp-pam" |
pascal@18107 | 4 VERSION="2.4.7" |
pascal@2225 | 5 CATEGORY="network" |
pascal@2225 | 6 SHORT_DESC="Implements the Point-to-Point Protocol (PPP) with PAM support." |
pascal@2225 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14781 | 8 LICENSE="BSD GPL" |
pascal@2225 | 9 SOURCE="ppp" |
pascal@2225 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@20669 | 11 WEB_SITE="https://ppp.samba.org/" |
pascal@18107 | 12 WGET_URL="https://github.com/paulusmack/ppp/archive/$TARBALL" |
pascal@23902 | 13 CONFIG_FILES="/etc/ppp/options" |
pascal@23902 | 14 SECRET_FILES="/etc/ppp/*secrets" |
pascal@18107 | 15 |
pascal@2225 | 16 DEPENDS="pam" |
pascal@18107 | 17 BUILD_DEPENDS="wget pam pam-dev" |
pascal@2225 | 18 PROVIDE="ppp:pam" |
pascal@2225 | 19 |
pascal@24055 | 20 current_version() |
pascal@24055 | 21 { |
pascal@24299 | 22 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ |
pascal@24055 | 23 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' |
pascal@24055 | 24 } |
pascal@24055 | 25 |
pascal@2225 | 26 # Rules to configure and make the package. |
pascal@2225 | 27 compile_rules() |
pascal@2225 | 28 { |
pascal@2225 | 29 sed -i 's/#USE_PAM/USE_PAM/' pppd/Makefile.linux |
pascal@18107 | 30 ./configure --prefix=/usr \ |
pascal@18107 | 31 $CONFIGURE_ARGS && |
pascal@2225 | 32 make && |
pascal@11797 | 33 make DESTDIR=$DESTDIR/usr install |
pascal@2225 | 34 } |
pascal@2225 | 35 |
pascal@2225 | 36 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2225 | 37 genpkg_rules() |
pascal@2225 | 38 { |
pascal@2225 | 39 mkdir -p $fs/usr |
pascal@15603 | 40 cp -a $install/usr/sbin $fs/usr |
pascal@18107 | 41 [ -d "$install/usr/lib" ] && cp -a $install/usr/lib $fs/usr |
pascal@2225 | 42 } |
pascal@7632 | 43 |
pascal@7632 | 44 pre_remove() |
pascal@7632 | 45 { |
pascal@7632 | 46 tazpkg get-install ${PACKAGE%-pam} |
pascal@7632 | 47 } |