summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4ffa213d9d80572e04c94ec2251e7f405c87f543 (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.1
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=('2c00a39a6e7fd50221023e2c3ab1a07b')

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