wok view pwauth/receipt @ rev 24055
Add current_version for most github hosted softwares
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Tue Jun 08 08:46:05 2021 +0000 (2021-06-08) | 
| parents | bf4a09ef1d2e | 
| children | b569b85b0fb9 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="pwauth"
     4 VERSION="2.3.10"
     5 CATEGORY="security"
     6 SHORT_DESC="Support reasonably secure web auth using system password DB"
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="BSD"
     9 TARBALL="$PACKAGE-$VERSION.tar.gz"
    10 WEB_SITE="https://github.com/phokz/pwauth/"
    11 WGET_URL="https://pwauth.googlecode.com/files/$TARBALL"
    13 DEPENDS=""
    14 BUILD_DEPENDS="wget"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	cd $src && make
    20 }
    22 # Rules to gen a SliTaz package suitable for Tazpkg.
    23 genpkg_rules()
    24 {
    25 	mkdir -p $fs/usr/bin
    26 	cp -a $src/pwauth $fs/usr/bin
    27 }