Files
haikuports/sys-auth/libyubikey/libyubikey-1.13.recipe
fbrosson 906d614da8 libyubikey: fix soname compat and BUILD_PREREQUIRES. Thx @korli!
Also link against libusb-1.0 instead of libusb_compat's libusb-0.1.
2016-12-21 09:10:08 +00:00

73 lines
1.6 KiB
Bash

SUMMARY="Low level C SDK for the Yubico YubiKey authentication device"
DESCRIPTION="Low-level C software development kit for the Yubico YubiKey \
authentication device."
HOMEPAGE="https://developers.yubico.com/yubico-c/"
COPYRIGHT="2008-2015 Yubico AB"
LICENSE="BSD (2-clause)"
REVISION="2"
SOURCE_URI="https://developers.yubico.com/yubico-c/Releases/libyubikey-$portVersion.tar.gz"
CHECKSUM_SHA256="04edd0eb09cb665a05d808c58e1985f25bb7c5254d2849f36a0658ffc51c3401"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
libyubikey$secondaryArchSuffix = $portVersion
cmd:modhex$secondaryArchSuffix = $portVersion
cmd:ykparse$secondaryArchSuffix = $portVersion
cmd:ykgenerate$secondaryArchSuffix = $portVersion
lib:libyubikey$secondaryArchSuffix = 0.1.7 compat >= 0
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libcurl$secondaryArchSuffix
lib:libusb_1.0$secondaryArchSuffix
"
PROVIDES_devel="
libyubikey${secondaryArchSuffix}_devel = $portVersion
devel:libyubikey$secondaryArchSuffix = 0.1.7 compat >= 0
"
REQUIRES_devel="
libyubikey$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libcurl$secondaryArchSuffix
devel:libusb_1.0$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:awk
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
runConfigure ./configure --disable-dependency-tracking
make $jobArgs
}
INSTALL()
{
make install
rm $libDir/libyubikey.la
prepareInstalledDevelLib libyubikey
fixPkgconfig
if [ -n "$secondaryArchSuffix" ]; then
rm -rf $manDir
fi
packageEntries devel \
$developDir
}
TEST()
{
make check
}