mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
76 lines
1.5 KiB
Bash
76 lines
1.5 KiB
Bash
SUMMARY="The GNU project's free implementation of the OpenPGP standard"
|
|
DESCRIPTION="GnuPG is the GNU project's complete and free implementation of \
|
|
the OpenPGP standard as defined by RFC4880 . GnuPG allows to encrypt and sign \
|
|
your data and communication, features a versatile key management system as \
|
|
well as access modules for all kinds of public key directories. GnuPG, also \
|
|
known as GPG, is a command line tool with features for easy integration with \
|
|
other applications."
|
|
HOMEPAGE="https://gnupg.org/"
|
|
COPYRIGHT="1998-2016 Free Software Foundation, Inc."
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="https://gnupg.org/ftp/gcrypt/gnupg/gnupg-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="6b47a3100c857dcab3c60e6152e56a997f2c7862c1b8b2b25adf3884a1ae2276"
|
|
PATCHES="gnupg-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
gnupg = $portVersion
|
|
cmd:gpg = $portVersion compat >= 1.4
|
|
cmd:gpg_zip = $portVersion compat >= 1.4
|
|
cmd:gpgsplit = $portVersion compat >= 1.4
|
|
cmd:gpgv = $portVersion compat >= 1.4
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libcurl
|
|
lib:libiconv
|
|
lib:libintl
|
|
lib:libreadline
|
|
lib:libusb_0.1
|
|
lib:libz
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libcurl
|
|
devel:libiconv
|
|
devel:libintl
|
|
devel:libreadline
|
|
devel:libusb_0.1
|
|
devel:libz
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:autoheader
|
|
cmd:automake
|
|
cmd:autoreconf
|
|
cmd:bison
|
|
cmd:find
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
cmd:msgfmt
|
|
cmd:perl
|
|
cmd:tar
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -fi
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|