Date: Monday, August 20, 2018 @ 19:44:44 Author: ffy00 Revision: 372904
import from aur Added: python2-secretstorage/ python2-secretstorage/repos/ python2-secretstorage/trunk/ python2-secretstorage/trunk/PKGBUILD ----------+ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) Added: python2-secretstorage/trunk/PKGBUILD =================================================================== --- python2-secretstorage/trunk/PKGBUILD (rev 0) +++ python2-secretstorage/trunk/PKGBUILD 2018-08-20 19:44:44 UTC (rev 372904) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Filipe Laíns (FFY00) <[email protected]> + +pkgname=python2-secretstorage +_pkgname=${pkgname#python2-} +pkgver=2.3.1 +pkgrel=1 +pkgdesc="This module provides a way for securely storing passwords and other secrets." +arch=('any') +url="https://github.com/mitya57/secretstorage" +license=('BSD') +depends=('python2-dbus' 'python2-cryptography') +makedepends=('python2-setuptools') +provides=('python2-secretstorage') +conflicts=('python2-secretstorage') +source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz") +sha512sums=('0a22937d5772ac43e3a5f5a0dc101911322386f23cb46036d1f0962b879a1896ba7a2852aed85ebb5cb6b0919a0da6517b3eb2f5dc7c69c7b5c4b7875145f66e') + +build() { + cd $_pkgname-$pkgver + python2 setup.py build +} + +package() { + cd $_pkgname-$pkgver + + python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build + + # Install the license + install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} Property changes on: python2-secretstorage/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
