# HG changeset patch # User Christopher Rogers # Date 1286456172 0 # Node ID 3887fc200b8cbd46394cbff932faa2996dce073b # Parent ee22d3ede55af6884788a97bf7bcc890b5108e1b Added pwgen. A password generator. diff -r ee22d3ede55a -r 3887fc200b8c pwgen/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pwgen/receipt Thu Oct 07 12:56:12 2010 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="pwgen" +VERSION="2.06" +CATEGORY="misc" +SHORT_DESC="Pwgen is a small password generator which creates passwords which can be easily memorized by a human" +MAINTAINER="slaxemulator@gmail.com" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://sourceforge.net/projects/pwgen/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +} +