diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/keepassx/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/keepassx/PKGBUILD')
-rw-r--r-- | community/keepassx/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/keepassx/PKGBUILD b/community/keepassx/PKGBUILD new file mode 100644 index 000000000..0c4f81fae --- /dev/null +++ b/community/keepassx/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 12540 2010-03-07 20:44:50Z spupykin $ +# Maintainer: Alexander Fehr <pizzapunk gmail com> +# Contributor: Philipp Giebel <arch@ambience-design.net> + +pkgname=keepassx +pkgver=0.4.3 +pkgrel=1 +pkgdesc="Cross platform password manager" +arch=('i686' 'x86_64') +url="http://www.keepassx.org/" +license=('GPL2') +depends=('qt' 'libxtst') +source=(http://downloads.sourceforge.net/keepassx/keepassx-$pkgver.tar.gz) +md5sums=('1df67bb22b2e08df49f09e61d156f508') + +build() { + cd "$srcdir/keepassx-$pkgver" + + qmake PREFIX=/usr || return 1 + make || return 1 + make INSTALL_ROOT="$pkgdir" install || return 1 +} |