diff options
-rw-r--r-- | testing/py3-pygpgme/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/py3-pygpgme/APKBUILD b/testing/py3-pygpgme/APKBUILD new file mode 100644 index 0000000000..5c34d834e7 --- /dev/null +++ b/testing/py3-pygpgme/APKBUILD @@ -0,0 +1,27 @@ +# Maintainer: TBK <tbk@jjtc.eu> +# Contributor: TBK <tbk@jjtc.eu> +pkgname=py3-pygpgme +_pkgname=pygpgme +pkgver=0.3.1 +pkgrel=0 +pkgdesc="PyGPGME is a Python module that lets you sign, verify, encrypt and decrypt messages using the OpenPGP format." +url="https://launchpad.net/pygpgme" +arch="all" +license="LGPL2.1" +depends="python3 gpgme" +makedepends="python3-dev gpgme-dev" +subpackages="" +source="$_pkgname-${pkgver}.tar.gz::https://github.com/rshk/$_pkgname/archive/v$pkgver.tar.gz" +builddir="$srcdir"/$_pkgname-$pkgver + +build() { + cd "$builddir" + python3 setup.py build +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="f3c9de92956917f5e55c3a8d49be354d845e4f99b3a5173601841afcdd7b9ad270be0dea50468425c517328ceba46f1252685587bcf011287d1ed3a07b7ba8ab pygpgme-0.3.1.tar.gz" |