blob: 0bcb37868910348ab3bde1b077e68dc2a592f976 (
plain)
1 # Description: Password manager application
2 # URL: http://www.keepassx.org/
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on: qt4 xorg-libxtst
5
6 name=keepassx
7 version=0.4.4
8 release=1
9 source=(https://www.keepassx.org/releases/$version/keepassx-$version.tar.gz unistd.patch)
10
11 build() {
12 cd $name-$version
13 patch -p1 -i $SRC/unistd.patch
14
15 qmake
16 make
17 make INSTALL_ROOT=$PKG install
18 }
|