Package Details: gnupg-git 2.3.2.beta105_r9343.g25ae80b8e-2

Git Clone URL: https://aur.archlinux.org/gnupg-git.git (read-only, click to copy)
Package Base: gnupg-git
Description: Complete and free implementation of the OpenPGP standard
Upstream URL: https://www.gnupg.org/
Licenses: GPL
Conflicts: gnupg
Provides: gnupg
Submitter: alphazo
Maintainer: IslandC0der
Last Packager: IslandC0der
Votes: 2
Popularity: 0.000000
First Submitted: 2013-06-30 19:25 (UTC)
Last Updated: 2021-09-29 23:44 (UTC)

Dependencies (20)

Required by (200)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

holos commented on 2013-06-30 18:05 (UTC)

pacman 4.1 PKGBUILD: http://ix.io/6qT

alphazo commented on 2013-06-27 07:10 (UTC)

Package has been updated and can now compile the latest git version again (rather than 2.1beta3).

alphazo commented on 2013-06-13 16:13 (UTC)

Thanks @nullren, all your fixes have been applied.

<deleted-account> commented on 2013-05-24 06:20 (UTC)

not able to get this to build as is. changed the PKGBUILD a little bit to at least get something i could play with. needed to skip building docs because got an error there. also using the 2.1.0b3 tag. --- PKGBUILD-orig 2013-05-23 22:56:02.320835635 -0700 +++ PKGBUILD 2013-05-23 23:15:46.305561006 -0700 @@ -12,7 +12,7 @@ license=('GPL') url="http://www.gnupg.org/" makedepends=('git' 'ghostscript' 'transfig') -provides=("gnupg=${pkgver}") +provides=("gnupg=${pkgver}" 'dirmngr') conflicts=('gnupg2' 'gnupg' 'dirmngr') replaces=('gnupg2' 'gnupg' 'dirmngr') install=${pkgname}.install @@ -28,7 +28,7 @@ msg "Connecting to GIT server...." if [ -d $_gitname ] ; then - cd $_gitname && git pull origin + cd $_gitname && git pull origin master msg "The local files are updated." else git clone $_gitroot $_gitname @@ -38,11 +38,13 @@ msg "Starting make..." rm -rf "$srcdir/$_gitname-build" + git checkout gnupg-2.1.0beta3 git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" cd "$srcdir/$_gitname-build" - read me - ./autogen.sh --force - ./configure --enable-maintainer-mode --prefix=/usr --libexecdir=/usr/lib/gnupg #$EXTRAOPTS + sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac + sed -i 's/doc, yes/doc, no/g' configure.ac + autoreconf -fiv --force + LIBS=-llber ./configure --enable-maintainer-mode --prefix=/usr --libexecdir=/usr/lib/gnupg #$EXTRAOPTS make } @@ -55,5 +57,5 @@ # Remove conflicting man file #rm -f ${pkgdir}/usr/share/man/man7/gnupg.7 ln -s gpg2 "${pkgdir}"/usr/bin/gpg - ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz + #ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz }

kang commented on 2013-03-13 07:09 (UTC)

remove "read me" ;) sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac sed -i 's/AM_PROG_MKDIR_P/AC_PROG_MKDIR_P/g' configure.ac sed -i 's/\$\(mkdir_p\)/\$\(MKDIR_P\)/g' Makefile.am autoreconf -fiv instead of autogen configure: ./configure \ `> --prefix=/usr \ `> --sysconfdir=/etc \ `> --libexecdir=/usr/lib/gnupg \ `> --enable-maintainer-mode \ `> --enable-symcryptrun \ `> --enable-gpgtar

alphazo commented on 2012-12-04 10:13 (UTC)

Thanks @kurz, PKGBUILD has been fixed.