summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f18aa7d053e0283cce4701eed6b4f16c8df83d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: M0Rf30

pkgname=python2-gnupg-isis
name=python-gnupg
pkgver=2.3.1
pkgrel=1
pkgdesc='A modified version of python-gnupg, including security patches, extensive documentation, and extra features. The gnupg module allows Python programs to make use of the functionality provided by the GNU Privacy Guard.'
url='https://github.com/isislovecruft/python-gnupg'
license=('GPL3')
arch=('any')
depends=('python2' 'gnupg' 'python2-psutil')
conflicts=('python2-gnupg')
provides=('python2-gnupg')
source=("https://github.com/isislovecruft/python-gnupg/archive/$pkgver.tar.gz")

build() {
  cd $name-$pkgver
  python2 setup.py build
}

package() {
  cd $name-$pkgver
  python2 setup.py install --root=${pkgdir} --optimize=1
}

md5sums=('b08128652940f0dc1fd1b94d2e4efea2')