mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 00:27:15 +08:00
22 lines
604 B
Bash
22 lines
604 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): AlmAck <gluca86 [at] gmail.com>
|
|
|
|
pkgname=python2-keyring
|
|
pkgver=1.2.2
|
|
pkgrel=2
|
|
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=('828bab18f3912785a4126eb6479d22b6')
|
|
|
|
package() {
|
|
cd ${srcdir}/keyring-${pkgver}
|
|
python2 setup.py install --root=$pkgdir/ --optimize=1
|
|
}
|