summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 829578e02566dfd1289c1d507633778f2a70baac (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
# Maintainer: widowild
# Contributors: Danny Su <contact@dannysu.com>

pkgname=keepass-plugin-http-git
pkgver=20170526
pkgrel=1
pkgdesc="KeePass plugin to expose password entries securely (256bit AES/CBC) over HTTP"
license=('GPL3')
depends=('keepass')
conflicts=('keepasshttp' 'keepass-plugin-http')
arch=('any')
url="http://github.com/pfn/keepasshttp"
#source=(https://github.com/pfn/keepasshttp/raw/master/KeePassHttp.plgx)
source=(git+https://github.com/pfn/keepasshttp.git)
sha256sums=('SKIP')

pkgver() {
  cd "${srcdir}/keepasshttp"
  git log -1 --format="%cd" --date=short | sed 's|-||g'
    
}

package() {
  cd "${srcdir}/keepasshttp"
  mkdir -p "${pkgdir}"/usr/share/keepass/plugins
  install -m644 KeePassHttp.plgx "${pkgdir}"/usr/share/keepass/plugins/
}