mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
18 lines
564 B
Bash
18 lines
564 B
Bash
# Contributer: Aaron Schaefer <aaron@elasticdog.com>
|
|
pkgname=python-gnupginterface
|
|
pkgver=0.3.2
|
|
pkgrel=3
|
|
pkgdesc="A Python interface to GNU Privacy Guard (GnuPG)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://py-gnupg.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('gnupg' 'python')
|
|
provides=('gnupginterface')
|
|
replaces=('gnupginterface')
|
|
source=(http://downloads.sourceforge.net/sourceforge/py-gnupg/GnuPGInterface-$pkgver.tar.gz)
|
|
md5sums=('d4627d83446f96bd8c22f8d15db3f7c2')
|
|
|
|
build() {
|
|
cd $startdir/src/GnuPGInterface-$pkgver
|
|
python setup.py install --root=$startdir/pkg
|
|
}
|