wok-current annotate pwgen/receipt @ rev 20421
Update some web_site to https
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Aug 07 23:03:21 2018 +0200 (2018-08-07) |
parents | bf4a09ef1d2e |
children | 54a04d133310 |
rev | line source |
---|---|
slaxemulator@6553 | 1 # SliTaz package receipt. |
slaxemulator@6553 | 2 |
slaxemulator@6553 | 3 PACKAGE="pwgen" |
slaxemulator@6553 | 4 VERSION="2.06" |
slaxemulator@6553 | 5 CATEGORY="misc" |
slaxemulator@6553 | 6 SHORT_DESC="Pwgen is a small password generator which creates passwords which can be easily memorized by a human" |
slaxemulator@6553 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15376 | 8 LICENSE="GPL" |
slaxemulator@6553 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20421 | 10 WEB_SITE="https://sourceforge.net/projects/pwgen/" |
slaxemulator@6553 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
slaxemulator@6553 | 12 |
slaxemulator@6553 | 13 # Rules to configure and make the package. |
slaxemulator@6553 | 14 compile_rules() |
slaxemulator@6553 | 15 { |
slaxemulator@6553 | 16 cd $src |
slaxemulator@6553 | 17 ./configure \ |
slaxemulator@6553 | 18 --prefix=/usr \ |
slaxemulator@6553 | 19 --infodir=/usr/share/info \ |
slaxemulator@6553 | 20 --mandir=/usr/share/man \ |
slaxemulator@6553 | 21 $CONFIGURE_ARGS && |
pascal@15376 | 22 make && make DESTDIR=$DESTDIR install |
slaxemulator@6553 | 23 } |
slaxemulator@6553 | 24 |
slaxemulator@6553 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@6553 | 26 genpkg_rules() |
slaxemulator@6553 | 27 { |
slaxemulator@6553 | 28 mkdir -p $fs/usr |
pascal@15376 | 29 cp -a $install/usr/bin $fs/usr |
slaxemulator@6553 | 30 } |
slaxemulator@6553 | 31 |