blob: 5524092563c9e7ba58a8fc005598ccb2977bf72a (
plain)
1 # Description: Securely store passwords and other private data using the SecretService DBus API
2 # URL: https://github.com/mitya57/secretstorage
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-cryptography python3-jeepney
5
6 name=python3-secretstorage
7 version=3.3.3
8 release=1
9 source=(https://pypi.io/packages/source/S/SecretStorage/SecretStorage-$version.tar.gz)
10
11 build() {
12 cd SecretStorage-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 --skip-build \
17 -O1
18 }
|