contrib/python3-gpgme/Pkgfile
2021-01-23 19:35:37 +11:00

29 lines
579 B
Plaintext

# Description: Python bindings for GPGme.
# URL: https://www.gnupg.org/gpgme.html
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: gpgme swig python3
name=python3-gpgme
version=1.15.1
release=1
source=(https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-$version.tar.bz2)
build() {
cd gpgme-$version
./configure \
--prefix=/usr \
--disable-fd-passing \
--disable-gpgsm-test
make
cd lang/python
make DESTDIR=$PKG install
# don't install python 2
rm -rf $PKG/usr/lib/python2.7
install -d $PKG/usr/etc/gpgme
echo python3 > $PKG/usr/etc/gpgme/python
}