uriparser, bump version (#6446)

This commit is contained in:
Schrijvers Luc
2021-11-28 18:49:04 +01:00
committed by GitHub
parent 989de85bfe
commit c1a354c03d

View File

@@ -8,14 +8,14 @@ COPYRIGHT="2007 Weijia Song
LICENSE="BSD (3-clause)"
REVISION="1"
SOURCE_URI="https://github.com/uriparser/uriparser/releases/download/uriparser-$portVersion/uriparser-$portVersion.tar.bz2"
CHECKSUM_SHA256="b7cdabe5611408fc2c3a10f8beecb881a0c7e93ff669c578cd9e3e6d64b8f87b"
CHECKSUM_SHA256="dd8061eba7f2e66c151722e6db0b27c972baa6215cf16f135dbe0f0a4bc6606c"
SOURCE_FILENAME="uriparser-$portVersion.tar.gz"
SOURCE_DIR="uriparser-$portVersion"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
libVersion="1.0.27"
libVersion="1.0.28"
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
PROVIDES="
@@ -56,16 +56,15 @@ defineDebugInfoPackage uriparser$secondaryArchSuffix \
BUILD()
{
mkdir -p build && cd build
cmake .. $cmakeDirArgs
make $jobArgs
cmake -B build -S . \
$cmakeDirArgs \
-DCMAKE_BUILD_TYPE=Release
make -C build $jobArgs
}
INSTALL()
{
cd build
make install
make -C build install
rm -f "$libDir"/liburiparser.la
@@ -78,6 +77,5 @@ INSTALL()
TEST()
{
cd build
make test
make -C build test
}