summaryrefslogtreecommitdiff
path: root/gnupg/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'gnupg/Pkgfile')
-rw-r--r--gnupg/Pkgfile23
1 files changed, 0 insertions, 23 deletions
diff --git a/gnupg/Pkgfile b/gnupg/Pkgfile
deleted file mode 100644
index 9dbf561..0000000
--- a/gnupg/Pkgfile
+++ /dev/null
@@ -1,23 +0,0 @@
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}