mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
76 lines
1.7 KiB
Bash
76 lines
1.7 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="http://www.gnu.org/software/libtasn1"
|
|
COPYRIGHT="
|
|
2002-2014 Free Software Foundation, Inc.
|
|
"
|
|
LICENSE="GNU LGPL v2.1
|
|
GNU GPL v3"
|
|
SOURCE_URI="http://ftp.gnu.org/gnu/libtasn1/libtasn1-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="4f6f7a8fd691ac2b8307c8ca365bad711db607d4ad5966f6938a9d2ecd65c920"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libtasn1$secondaryArchSuffix = $portVersion compat >= 4
|
|
lib:libtasn1$secondaryArchSuffix = 6.5.2 compat >= 6
|
|
cmd:asn1Coding$secondaryArchSuffix
|
|
cmd:asn1Decoding$secondaryArchSuffix
|
|
cmd:asn1Parser$secondaryArchSuffix
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
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()
|
|
{
|
|
autoreconf -fi
|
|
runConfigure ./configure --disable-gcc-warnings
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
rm $libDir/libtasn1.la
|
|
|
|
prepareInstalledDevelLibs libtasn1
|
|
fixPkgconfig
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$developDir \
|
|
$manDir/man3
|
|
}
|
|
|
|
# ----- devel package -------------------------------------------------------
|
|
|
|
PROVIDES_devel="
|
|
libtasn1${secondaryArchSuffix}_devel = $portVersion compat >= 4
|
|
devel:libtasn1$secondaryArchSuffix = 6.5.2 compat >= 6
|
|
"
|
|
REQUIRES_devel="
|
|
libtasn1$secondaryArchSuffix == $portVersion base
|
|
"
|