freealut, update libVersionCompat, revbump depending recipes (#8280)

This commit is contained in:
Schrijvers Luc
2023-04-04 18:19:07 +02:00
committed by GitHub
parent 2395bb9375
commit b4a0631bf3
4 changed files with 15 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ building a mine or fight each other on an arena-like map."
HOMEPAGE="https://www.openclonk.org/"
COPYRIGHT="2009-2019 OpenClonk Team and contributors"
LICENSE="ISC"
REVISION="4"
REVISION="5"
srcGitRev="a080958de3b3f95edcc5756cdd2fe56adb0cf64f"
SOURCE_URI="https://github.com/openclonk/openclonk/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="30c0c71f22e586b5c0e2c60aceb210bf39e519c8779b83e495a5791db48a5929"

View File

@@ -6,7 +6,7 @@ HOMEPAGE="https://github.com/callaa/antigravitaattori/"
COPYRIGHT="2015 Riku Salminen \
Calle Laakkonen"
LICENSE="GNU GPL v2"
REVISION="1"
REVISION="2"
srcGitRev="099c56580e2c7e61719200e57e01a1c42fb71c0f"
SOURCE_URI="https://github.com/callaa/antigravitaattori/archive/${srcGitRev}.zip"
SOURCE_DIR="antigravitaattori-${srcGitRev}"

View File

@@ -13,7 +13,7 @@ Features:
HOMEPAGE="https://viewizard.com/"
COPYRIGHT="Mikhail Kurinnoi"
LICENSE="GNU GPL v3"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/viewizard/astromenace/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="0aca5211c9f333acf698807f597e5ad8e9d1455ba8ad202940890bff5b6c9507"
SOURCE_DIR="astromenace-$portVersion"

View File

@@ -3,7 +3,7 @@ DESCRIPTION="FreeALUT - a free implementation of OpenAL's ALUT standard."
HOMEPAGE="http://connect.creativelabs.com/openal"
COPYRIGHT="2005-2006 Creative Technology Ltd."
LICENSE="GNU GPL v2"
REVISION="4"
REVISION="5"
SOURCE_URI="http://ftp.de.debian.org/debian/pool/main/f/freealut/freealut_$portVersion.orig.tar.gz"
CHECKSUM_SHA256="60d1ea8779471bb851b89b49ce44eecb78e46265be1a6e9320a28b100c8df44f"
SOURCE_DIR="freealut-$portVersion"
@@ -11,9 +11,12 @@ SOURCE_DIR="freealut-$portVersion"
ARCHITECTURES="all"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
libVersion="0.1.0"
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
PROVIDES="
freealut$secondaryArchSuffix = $portVersion compat >= 0
lib:libalut$secondaryArchSuffix = $portVersion compat >= 0
lib:libalut$secondaryArchSuffix = $libVersionCompat
"
REQUIRES="
haiku$secondaryArchSuffix
@@ -23,7 +26,7 @@ REQUIRES="
PROVIDES_devel="
freealut${secondaryArchSuffix}_devel = $portVersion compat >= 0
cmd:freealut_config$secondaryArchSuffix = $portVersion compat >= 0
devel:libalut$secondaryArchSuffix = $portVersion compat >= 0
devel:libalut$secondaryArchSuffix = $libVersionCompat
"
REQUIRES_devel="
freealut$secondaryArchSuffix == $portVersion base
@@ -51,7 +54,7 @@ BUILD()
{
libtoolize --force --copy --install
./autogen.sh
runConfigure ./configure
runConfigure ./configure --disable-static
make $jobArgs
}
@@ -59,8 +62,12 @@ INSTALL()
{
make install
# remove libtool file
rm -r $libDir/libalut.la
fixPkgconfig
prepareInstalledDevelLibs libalut
prepareInstalledDevelLib libalut
packageEntries devel \
$developDir $binDir
}