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