mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-19 10:10:06 +02:00
83 lines
1.8 KiB
Bash
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="6753da2e621257f33f5b051cc114d417e5206a0818fe0b1ecfd6153f70934753"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libtasn1$secondaryArchSuffix = $portVersion compat >= 4
|
|
lib:libtasn1$secondaryArchSuffix = 6.5.4 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.4 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
|
|
}
|