Skip to content

Instantly share code, notes, and snippets.

@Stebalien
Created June 12, 2013 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Stebalien/56b7dc6a0da420ab35ec to your computer and use it in GitHub Desktop.
Save Stebalien/56b7dc6a0da420ab35ec to your computer and use it in GitHub Desktop.
# Maintainer: Ivan Sichmann Freitas <ivansichfreitas@gmail.com>
# Contributor: Brice Maron <brice@bmaron.net>
# Contributor: Nuno Araujo <nuno.araujo at russo79.com>
pkgname=python2-keyring
pkgver=1.4
pkgrel=1
pkgdesc="Store and access your passwords safely."
arch=(any)
url="http://pypi.python.org/pypi/keyring"
license=('PSF')
depends=('python2')
replaces=('python-keyring')
source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.zip")
optdepends=('libgnome-keyring: Gnome integration'
'python2-gobject: Gnome integration'
'kdebindings-python2: Kde integration')
md5sums=('07a3756b259dfb5d08c471f7eccc32cb')
build() {
cd "$srcdir/keyring-$pkgver"
python2 setup.py build
}
package() {
cd "$srcdir/keyring-$pkgver"
python2 setup.py install --root=$pkgdir --optimize=1
}
# vim:set ts=2 sw=2 et:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment