summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShokara Kou <kou@13f0.net>2022-04-23 00:31:36 -0400
committerShokara Kou <kou@13f0.net>2022-12-10 16:12:53 -0500
commitc08647e978cf2af07657518b4eeeac8b67ab1de5 (patch)
tree0e0c9f23b569169329ce540411d9e86033b3bd60
parent056124f31eedc2b0351da918d3b18171eaefb4a8 (diff)
gnupg: add 1.4.23
-rw-r--r--gnupg/.footprint22
-rw-r--r--gnupg/.md5sum1
-rw-r--r--gnupg/Pkgfile23
3 files changed, 46 insertions, 0 deletions
diff --git a/gnupg/.footprint b/gnupg/.footprint
new file mode 100644
index 0000000..351b888
--- /dev/null
+++ b/gnupg/.footprint
@@ -0,0 +1,22 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/bin/
3-rwxr-xr-x root/root usr/bin/gpg
4-rwxr-xr-x root/root usr/bin/gpg-zip
5-rwxr-xr-x root/root usr/bin/gpgsplit
6-rwxr-xr-x root/root usr/bin/gpgv
7drwxr-xr-x root/root usr/libexec/
8drwxr-xr-x root/root usr/libexec/gnupg/
9-rwxr-xr-x root/root usr/libexec/gnupg/gpgkeys_curl
10-rwxr-xr-x root/root usr/libexec/gnupg/gpgkeys_finger
11-rwxr-xr-x root/root usr/libexec/gnupg/gpgkeys_hkp
12drwxr-xr-x root/root usr/share/
13drwxr-xr-x root/root usr/share/gnupg/
14-rw-r--r-- root/root usr/share/gnupg/FAQ
15-rw-r--r-- root/root usr/share/gnupg/options.skel
16drwxr-xr-x root/root usr/share/info/
17-rw-r--r-- root/root usr/share/info/gnupg1.info
18drwxr-xr-x root/root usr/share/man/
19drwxr-xr-x root/root usr/share/man/man1/
20-rw-r--r-- root/root usr/share/man/man1/gpg-zip.1.gz
21-rw-r--r-- root/root usr/share/man/man1/gpg.1.gz
22-rw-r--r-- root/root usr/share/man/man1/gpgv.1.gz
diff --git a/gnupg/.md5sum b/gnupg/.md5sum
new file mode 100644
index 0000000..80d24b7
--- /dev/null
+++ b/gnupg/.md5sum
@@ -0,0 +1 @@
b1df02c73572f27bc859ac05ff2259ab gnupg-1.4.23.tar.bz2
diff --git a/gnupg/Pkgfile b/gnupg/Pkgfile
new file mode 100644
index 0000000..9dbf561
--- /dev/null
+++ b/gnupg/Pkgfile
@@ -0,0 +1,23 @@
1# Description: GNU's implementation of OpenPGP for secure communication and data storage
2# URL: https://gnupg.org/
3# Maintainer: Shokara Kou, kou at 13f0 dot net
4# Depends on: bzip2 curl openssl zlib
5
6name=gnupg
7version=1.4.23
8release=1
9source=(https://gnupg.org/ftp/gcrypt/$name/$name-$version.tar.bz2)
10
11build() {
12 cd $name-$version
13
14 # workaround for gcc 10
15 CFLAGS="${CFLAGS} -fcommon" ./configure \
16 --prefix=/usr \
17 --disable-nls
18
19 make
20 make DESTDIR=$PKG install
21
22 rm -fr $PKG/usr/share/doc
23}