19 lines
557 B
Plaintext
19 lines
557 B
Plaintext
# Description: Securely store passwords and other private data using the SecretService DBus API
|
|
# URL: https://github.com/mitya57/secretstorage
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-cryptography python3-jeepney
|
|
|
|
name=python3-secretstorage
|
|
version=3.3.3
|
|
release=1
|
|
source=(https://pypi.io/packages/source/S/SecretStorage/SecretStorage-$version.tar.gz)
|
|
|
|
build() {
|
|
cd SecretStorage-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build \
|
|
-O1
|
|
}
|