mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
23 lines
608 B
Bash
23 lines
608 B
Bash
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
|
|
pkgname=python2-keyring
|
|
pkgver=3.7
|
|
pkgrel=1
|
|
pkgdesc="Store and access your passwords safely."
|
|
arch=('any')
|
|
url="http://pypi.python.org/pypi/keyring"
|
|
license=('LGPL2')
|
|
depends=('python')
|
|
optdepends=('kdeutils-kwallet: supports the KDE Kwallet service.')
|
|
source=(http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.zip)
|
|
md5sums=('7746c545debacf983ec1c01966cacec3')
|
|
|
|
build() {
|
|
cd "$srcdir/keyring-$pkgver"
|
|
python setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/keyring-$pkgver"
|
|
python setup.py install --root=$pkgdir --optimize=1
|
|
} |