lis, disable static (#8451)

This commit is contained in:
Schrijvers Luc
2023-04-19 14:40:49 +02:00
committed by GitHub
parent 2a06186b00
commit 1a6f76891e

View File

@@ -5,7 +5,7 @@ differential equations using iterative methods."
HOMEPAGE="https://www.ssisc.org/lis/"
COPYRIGHT="2005 The Scalable Software Infrastructure Project"
LICENSE="BSD (3-clause)"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/anishida/lis/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="fa1b2878548e00509973681fd18cb45d48fdcb4b92347ba08b654eb79daab9c4"
SOURCE_FILENAME="lis-$portVersion.tar.gz"
@@ -88,11 +88,11 @@ defineDebugInfoPackage lis$secondaryArchSuffix \
BUILD()
{
autoreconf -vfi
runConfigure --omit-dirs binDir ./configure \
--bindir=$commandBinDir \
--enable-f90 \
--enable-shared
--enable-shared \
--disable-static
make $jobArgs
}
@@ -101,6 +101,7 @@ INSTALL()
make install
rm $libDir/liblis.la
mkdir -p $developDocDir
mv $prefix/share/examples $developDocDir
rm -rf $prefix/share
@@ -109,7 +110,8 @@ INSTALL()
fixPkgconfig
packageEntries devel \
$developDir
$developDir \
$manDir/man3
}
TEST()