# HG changeset patch # User Christophe Lincoln # Date 1332718046 -7200 # Node ID 44399ddd7189a635ae33e9293aab57574d155614 # Parent c79fb8dcb0b916225f3019edc729a8b52db847ff Add pwauth (use system passwd to auth user, maybe used in our CGI tools) diff -r c79fb8dcb0b9 -r 44399ddd7189 pwauth/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pwauth/receipt Mon Mar 26 01:27:26 2012 +0200 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="pwauth" +VERSION="2.3.10" +CATEGORY="security" +SHORT_DESC="Support reasonably secure web auth using system password DB" +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://code.google.com/p/pwauth/" +WGET_URL="https://pwauth.googlecode.com/files/$TARBALL" + +DEPENDS="" +BUILD_DEPENDS="wget" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src && make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/pwauth $fs/usr/bin +}