marisa, disable instead of remove static library (#8167)

This commit is contained in:
Schrijvers Luc
2023-03-29 15:25:47 +02:00
committed by GitHub
parent 0d083278da
commit a563ada5e1

View File

@@ -7,7 +7,7 @@ operating a MARISA-based dictionary."
HOMEPAGE="https://github.com/s-yata/marisa-trie"
COPYRIGHT="2016-2022 Susumu Yata"
LICENSE="GNU LGPL v2"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/s-yata/marisa-trie/archive/v${portVersion}/marisa-tries-$portVersion.tar.gz"
CHECKSUM_SHA256="1063a27c789e75afa2ee6f1716cc6a5486631dcfcb7f4d56d6485d2462e566de"
SOURCE_DIR="marisa-trie-$portVersion"
@@ -71,9 +71,9 @@ BUILD_PREREQUIRES="
BUILD()
{
autoreconf -i
runConfigure --omit-dirs bindir ./configure \
--bindir=$commandBinDir
--bindir=$commandBinDir \
--disable-static
make $jobArgs
}
@@ -82,16 +82,15 @@ INSTALL()
make install
rm $libDir/libmarisa.la
rm $libDir/libmarisa.a
prepareInstalledDevelLib libmarisa
fixPkgconfig
packageEntries devel $developDir
packageEntries devel \
$developDir
packageEntries tools \
$commandBinDir
$commandBinDir
}
TEST()