commit c08647e978cf2af07657518b4eeeac8b67ab1de5 parent 056124f31eedc2b0351da918d3b18171eaefb4a8 Author: Shokara Kou <kou@13f0.net> Date: Sat, 23 Apr 2022 00:31:36 -0400 gnupg: add 1.4.23 Diffstat:
| A | gnupg/.footprint | | | 22 | ++++++++++++++++++++++ |
| A | gnupg/.md5sum | | | 1 | + |
| A | gnupg/Pkgfile | | | 23 | +++++++++++++++++++++++ |
3 files changed, 46 insertions(+), 0 deletions(-)
diff --git a/gnupg/.footprint b/gnupg/.footprint @@ -0,0 +1,22 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/gpg +-rwxr-xr-x root/root usr/bin/gpg-zip +-rwxr-xr-x root/root usr/bin/gpgsplit +-rwxr-xr-x root/root usr/bin/gpgv +drwxr-xr-x root/root usr/libexec/ +drwxr-xr-x root/root usr/libexec/gnupg/ +-rwxr-xr-x root/root usr/libexec/gnupg/gpgkeys_curl +-rwxr-xr-x root/root usr/libexec/gnupg/gpgkeys_finger +-rwxr-xr-x root/root usr/libexec/gnupg/gpgkeys_hkp +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/gnupg/ +-rw-r--r-- root/root usr/share/gnupg/FAQ +-rw-r--r-- root/root usr/share/gnupg/options.skel +drwxr-xr-x root/root usr/share/info/ +-rw-r--r-- root/root usr/share/info/gnupg1.info +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/gpg-zip.1.gz +-rw-r--r-- root/root usr/share/man/man1/gpg.1.gz +-rw-r--r-- root/root usr/share/man/man1/gpgv.1.gz diff --git a/gnupg/.md5sum b/gnupg/.md5sum @@ -0,0 +1 @@ +b1df02c73572f27bc859ac05ff2259ab gnupg-1.4.23.tar.bz2 diff --git a/gnupg/Pkgfile b/gnupg/Pkgfile @@ -0,0 +1,23 @@ +# Description: GNU's implementation of OpenPGP for secure communication and data storage +# URL: https://gnupg.org/ +# Maintainer: Shokara Kou, kou at 13f0 dot net +# Depends on: bzip2 curl openssl zlib + +name=gnupg +version=1.4.23 +release=1 +source=(https://gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2) + +build() { + cd $name-$version + + # workaround for gcc 10 + CFLAGS="${CFLAGS} -fcommon" ./configure \ + --prefix=/usr \ + --disable-nls + + make + make DESTDIR=$PKG install + + rm -fr $PKG/usr/share/doc +}