wok rev 3040

Add keepassx password manager
author Rohit Joshi <jozee@slitaz.org>
date Tue May 12 13:20:03 2009 +0000 (2009-05-12)
parents 8c3afa509bc2
children b48f4163ea00
files keepassx/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/keepassx/receipt	Tue May 12 13:20:03 2009 +0000
     1.3 @@ -0,0 +1,37 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="keepassx"
     1.7 +VERSION="0.4.0"
     1.8 +CATEGORY="graphics"
     1.9 +SHORT_DESC="Cross platform password manager"
    1.10 +MAINTAINER="jozee@slitaz.org"
    1.11 +DEPENDS="xorg-libXtst libQtcore libQtGui"
    1.12 +BUILD_DEPENDS="Qt4-dev xorg-libXtst-dev xorg-libXtst qmake"
    1.13 +#SOURCE="KeePassX"
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WEB_SITE="http://www.keepassx.org/" 
    1.16 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.17 +TAGS="password key"
    1.18 +
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +   	cd $WOK/$PACKAGE/$PACKAGE-$VERSION/src
    1.24 +	qmake PREFIX=/usr &&
    1.25 +	make &&
    1.26 +	make INSTALL_ROOT=../_pkg install
    1.27 +	
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +   	mkdir -p $fs/usr/share/pixmaps
    1.34 +	_pkg=$WOK/$PACKAGE/$PACKAGE-$VERSION/_pkg
    1.35 +	cp -a $_pkg/usr/bin $fs/usr
    1.36 +	#cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share	
    1.37 +	cp -a $_pkg/usr/share $fs/usr	
    1.38 +	cp -a $_pkg/usr/share/$PACKAGE/icons/keepassx.png $fs/usr/share/pixmaps		
    1.39 +	
    1.40 +}