Files
haikuports/dev-libs/libtasn1/libtasn1-4.10.recipe
fbrosson c0fba669a6 libtasn1: bump to 4.10, drop unneeded "autoreconf -fi"
* Remove documentation when building for secondary architectures.
* Switch SOURCE_URI to https.
* Add TEST() with "make check". Results: PASS = TOTAL = 24 ;-)
* Reorder sections.
2017-01-17 12:07:07 +00:00

83 lines
1.8 KiB
Bash

SUMMARY="A small ASN.1 library"
DESCRIPTION="The Libtasn1 library provides Abstract Syntax Notation One \
(ASN.1, as specified by the X.680 ITU-T recommendation) parsing and \
structures management, and Distinguished Encoding Rules (DER, as per \
X.690) encoding and decoding functions."
HOMEPAGE="https://www.gnu.org/software/libtasn1/"
COPYRIGHT="2002-2017 Free Software Foundation, Inc."
LICENSE="GNU LGPL v2.1
GNU GPL v3"
REVISION="1"
SOURCE_URI="https://ftp.gnu.org/gnu/libtasn1/libtasn1-$portVersion.tar.gz"
CHECKSUM_SHA256="681a4d9a0d259f2125713f2e5766c5809f151b3a1392fd91390f780b4b8f5a02"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
libtasn1$secondaryArchSuffix = $portVersion compat >= 4
lib:libtasn1$secondaryArchSuffix = 6.5.3 compat >= 6
cmd:asn1Coding$secondaryArchSuffix
cmd:asn1Decoding$secondaryArchSuffix
cmd:asn1Parser$secondaryArchSuffix
"
REQUIRES="
haiku$secondaryArchSuffix
"
PROVIDES_devel="
libtasn1${secondaryArchSuffix}_devel = $portVersion compat >= 4
devel:libtasn1$secondaryArchSuffix = 6.5.3 compat >= 6
"
REQUIRES_devel="
libtasn1$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
cmd:makeinfo
cmd:pkg_config$secondaryArchSuffix
"
BUILD()
{
runConfigure ./configure --disable-gcc-warnings
make $jobArgs
}
INSTALL()
{
make install
rm $libDir/libtasn1.la
prepareInstalledDevelLibs libtasn1
fixPkgconfig
if [ -n "$secondaryArchSuffix" ]; then
maybe_manDir_man3=
rm -rf $documentationDir
else
maybe_manDir_man3=$manDir/man3
fi
# devel package
packageEntries devel \
$developDir \
$maybe_manDir_man3
}
TEST()
{
make check
}