mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
56 lines
1.4 KiB
Bash
56 lines
1.4 KiB
Bash
SUMMARY="A collection of PIN or passphrase entry dialogs"
|
|
DESCRIPTION="This is a collection of PIN or passphrase entry dialogs which \
|
|
utilize the Assuan protocol as specified in the Libassuan manual."
|
|
HOMEPAGE="https://www.gnupg.org/"
|
|
COPYRIGHT="2000-2016 Free Software Foundation, Inc."
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="https://www.gnupg.org/ftp/gcrypt/pinentry/pinentry-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="1672c2edc1feb036075b187c0773787b2afd0544f55025c645a71b4c2f79275a"
|
|
PATCHES="pinentry-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
pinentry$secondaryArchSuffix = $portVersion
|
|
cmd:pinentry$secondaryArchSuffix = $portVersion
|
|
cmd:pinentry_curses$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libassuan$secondaryArchSuffix
|
|
lib:libgpg_error$secondaryArchSuffix
|
|
lib:libiconv$secondaryArchSuffix
|
|
lib:libncurses$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libassuan$secondaryArchSuffix
|
|
devel:libgpg_error$secondaryArchSuffix
|
|
devel:libiconv$secondaryArchSuffix
|
|
devel:libncurses$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:awk
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $docDir
|
|
make install
|
|
|
|
cp -r AUTHORS ChangeLog NEWS README $docDir
|
|
}
|