summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2f272041b2e9f2430b9d0f7400e2f759cd9a053a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Graham Smith <gps1539 at gmail dot com>

pkgname=trespass
pkgver=0.0.2
pkgrel=1
pkgdesc="A secure password keeper written in python using gpg to protect account/user and user/password key value stores"
arch=('any')
license=('GPL')
url='https://github.com/gps1539/trespass'
depends=('python' 'python-numpy' 'gnupg')
makedepends=()
source=("https://raw.githubusercontent.com/gps1539/trespass/master/trespass.py")
md5sums=('e37c77ad4e1a5f26a2bacbe2247cb4a8')

package()
{
   install -d "$pkgdir/usr/bin/"
   install -m755 "trespass.py" "$pkgdir/usr/bin/"
}