diff options
author | yate | 2017-12-15 21:12:26 -0500 |
---|---|---|
committer | yate | 2017-12-15 21:12:26 -0500 |
commit | 3182ed0e9fc8efef8d155f19c337b0f777f31d19 (patch) | |
tree | 55db73c83cbeac3f3e7e795903299bf549f191fb /PKGBUILD | |
download | aur-3182ed0e9fc8efef8d155f19c337b0f777f31d19.tar.gz |
intial
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..fc4aa8f3fb81 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Michael Yeatts <mwyeatts at gmail dot com> + +pkgname=zzzpython-keepkey +pkgver=4.0.2 +pkgrel=1 +pkgdesc="Python library for communicating with KeepKey Hardware Wallet" +arch=('any') +depends=('python' + 'python-ecdsa' + 'python-hidapi' + 'python-mnemonic' + 'python-protobuf') +makedepends=('python-setuptools') +url="https://github.com/keepkey/python-keepkey" +license=('LGPL3') +source=("https://pypi.python.org/packages/bd/7c/8edc3d017b4b02f11533083d9987d11707fcf82ab6606c9b9aedd2e95b4c/keepkey-4.0.2.tar.gz") +md5sums=('d872868e3c90ff33f969b1cb140e76ab') +provides=('keepkeyctl' 'python-keepkey') +conflicts=('keepkeyctl') + +package() { + ls + cd "$srcdir/keepkey-$pkgver" + + msg2 'Installing...' + python setup.py install --root="$pkgdir" --optimize=1 +} |