summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bd75330ab85cac20ac4ac820dad1fe7f7f456786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: Malte Bublitz <malte70+aur[at]mcbx[dot]de>

pkgname=geheim
pkgver=0.2
pkgrel=1
pkgdesc="Simple password manager which tries to follow the Unix principles, written in Bash and using Tar and GnuPG to store passwords."
arch=(any)
url="http://malte-bublitz.de/geheim"
license=("BSD")
depends=("gnupg" "tar")
makedepends=("make")
source=("$pkgname-$pkgver.tar.gz::https://github.com/malte70/$pkgname/archive/$pkgver.tar.gz")
sha256sums=('170336b31607594cd4cf6c56ab757ef6f4919462421040ac264fcce1894ef579')

check() {
	cd "${srcdir}/$pkgname-${pkgver}"
	make -B test
}

build() {
	true
}

package() {
	cd "${srcdir}/$pkgname-${pkgver}"
	make DEST=${pkgdir}/usr install
}
# vim:set ts=2 sw=2 noet: