summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 27363657a12a1089ee847a48cf2edee0a9b661d9 (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
29
30
# Maintainer: CĂ©lestin Matte aur [at] cmatte.me
# Contributor: Carsten Feuls <archlinux at carstenfeuls dot de>

pkgname=pwstore-git
pkgver=79c1243
pkgrel=1
pkgdesc="Multi User Password store"
arch=('i686' 'x86_64' 'armv5h' 'armv6h' 'armv7h')
url="https://github.com/Perdu/pwstore"
license=('')
depends=('ruby')
makedepends=('git')
source=('pwstore-git::git+https://github.com/Perdu/pwstore.git')
options=('!emptydirs')
md5sums=('SKIP')
sha256sums=('SKIP')


pkgver() {
	cd ${srcdir}/${pkgname}
	git describe --always | sed 's|-|.|g'
}


package() {
	cd ${srcdir}/${pkgname}
	mkdir -p "${pkgdir}/usr/bin"
	cp pws "${pkgdir}/usr/bin/"
}