wok-next diff pwgen/receipt @ rev 21529

updated buildroot (2014.08 -> 2020.05)
author Hans-G?nter Theisgen
date Sat Jun 20 16:34:10 2020 +0100 (2020-06-20)
parents a3c581bf52b8
children
line diff
     1.1 --- a/pwgen/receipt	Fri Aug 10 12:53:17 2018 +0300
     1.2 +++ b/pwgen/receipt	Sat Jun 20 16:34:10 2020 +0100
     1.3 @@ -1,31 +1,26 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="pwgen"
     1.8  VERSION="2.06"
     1.9  CATEGORY="misc"
    1.10 -SHORT_DESC="Pwgen is a small password generator which creates passwords which can be easily memorized by a human"
    1.11 -MAINTAINER="slaxemulator@gmail.com"
    1.12 +SHORT_DESC="Create easily memorized passwords"
    1.13 +MAINTAINER="devel@slitaz.org"
    1.14  LICENSE="GPL"
    1.15 +WEB_SITE="https://sourceforge.net/projects/pwgen/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WEB_SITE="https://sourceforge.net/projects/pwgen/"
    1.19  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.20  
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 -	cd $src
    1.25 +compile_rules() {
    1.26  	./configure \
    1.27  		--prefix=/usr \
    1.28  		--infodir=/usr/share/info \
    1.29  		--mandir=/usr/share/man \
    1.30  		$CONFIGURE_ARGS &&
    1.31 -	make && make DESTDIR=$DESTDIR install
    1.32 +	make &&
    1.33 +	make DESTDIR=$install install
    1.34  }
    1.35  
    1.36 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 -genpkg_rules()
    1.38 -{
    1.39 -	mkdir -p $fs/usr
    1.40 -	cp -a $install/usr/bin $fs/usr
    1.41 +genpkg_rules() {
    1.42 +	copy @std
    1.43  }
    1.44 -