mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
751 B
Bash
29 lines
751 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=keepassx
|
|
pkgver=0.4.3
|
|
pkgrel=2
|
|
pkgdesc="Cross platform password manager"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.keepassx.org/"
|
|
license=('GPL2')
|
|
depends=('qt' 'libxtst')
|
|
categories=('utils')
|
|
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
|
|
}
|