wok annotate keepassx/receipt @ rev 15002

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 21:12:16 2013 +0000 (2013-08-10)
parents be13f25e790b
children 533c0cab6960
rev   line source
jozee@3040 1 # SliTaz package receipt.
jozee@3040 2
jozee@3040 3 PACKAGE="keepassx"
erjo@5887 4 VERSION="0.4.3"
jozee@3040 5 CATEGORY="graphics"
jozee@3040 6 SHORT_DESC="Cross platform password manager"
jozee@3040 7 MAINTAINER="jozee@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
jozee@3040 9 #SOURCE="KeePassX"
jozee@3040 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@3040 11 WEB_SITE="http://www.keepassx.org/"
jozee@3040 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@3040 13 TAGS="password key"
jozee@3040 14
pascal@15002 15 DEPENDS="xorg-libXtst libQtCore libQtGui libQtXml gcc-lib-base"
pascal@15002 16 BUILD_DEPENDS="Qt4-dev xorg-libXtst-dev xorg-libXtst qmake libegl-mesa"
pascal@15002 17
jozee@3040 18 # Rules to configure and make the package.
jozee@3040 19 compile_rules()
jozee@3040 20 {
slaxemulator@8476 21 cd $src/src
jozee@3040 22 qmake PREFIX=/usr &&
jozee@3040 23 make &&
pascal@15002 24 make INSTALL_ROOT=$DESTDIR install
jozee@3040 25
jozee@3040 26 }
jozee@3040 27
jozee@3040 28 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3040 29 genpkg_rules()
jozee@3040 30 {
jozee@3040 31 mkdir -p $fs/usr/share/pixmaps
pascal@15002 32 cp -a $install/usr/bin $fs/usr
pascal@15002 33 #cp -a $install/usr/share/$PACKAGE $fs/usr/share
pascal@15002 34 cp -a $install/usr/share $fs/usr
pascal@15002 35 cp -a $install/usr/share/$PACKAGE/icons/keepassx.png $fs/usr/share/pixmaps
jozee@3040 36
jozee@3040 37 }