PKGBUILDs/passwordmanager/git/PKGBUILD

37 lines
1.1 KiB
Bash
Raw Normal View History

2015-08-26 21:21:22 +02:00
# Maintainer: Martchus <martchus@gmx.net>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of a binary repository.
2015-09-06 21:53:25 +02:00
_name=passwordmanager
2015-12-02 02:20:30 +01:00
_reponame=passwordmanager
2015-08-26 21:21:22 +02:00
pkgname=passwordmanager-git
2015-09-06 21:53:25 +02:00
pkgver=36.90d37ae
2016-04-20 00:32:19 +02:00
pkgrel=1
2015-08-26 21:21:22 +02:00
arch=('i686' 'x86_64')
2016-08-09 01:55:11 +02:00
pkgdesc="A simple password store using AES-256-CBC encryption via OpenSSL"
2015-08-26 21:21:22 +02:00
license=('GPL')
2015-08-31 01:53:31 +02:00
depends=('qt5-base' 'qtutilities' 'passwordfile' 'openssl' 'libxkbcommon-x11' 'desktop-file-utils' 'xdg-utils')
2015-12-06 19:17:57 +01:00
makedepends=('cmake' 'qt5-tools' 'git')
2015-08-26 21:21:22 +02:00
provides=('passwordmanager')
conflicts=('passwordmanager')
2015-12-02 02:20:30 +01:00
url="https://github.com/Martchus/${_reponame}"
2016-02-27 21:08:28 +01:00
source=("${_reponame}::git://github.com/Martchus/${_reponame}.git")
2015-08-27 22:41:20 +02:00
sha256sums=('SKIP')
2015-08-26 21:21:22 +02:00
pkgver() {
2015-12-24 16:50:30 +01:00
cd "${srcdir}/${pkgname}"
echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
2015-08-26 21:21:22 +02:00
}
build() {
2016-02-27 21:08:28 +01:00
cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}"
2016-04-20 00:32:19 +02:00
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" -DQUICK_GUI="no"
2015-12-24 16:50:30 +01:00
make
2015-08-26 21:21:22 +02:00
}
package() {
2016-02-27 21:08:28 +01:00
cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}"
2016-04-20 00:32:19 +02:00
make DESTDIR="${pkgdir}" install
2015-08-26 21:21:22 +02:00
}