capstone, disable static library (#7611)

This commit is contained in:
Schrijvers Luc
2022-12-21 13:32:39 +01:00
committed by GitHub
parent 664725f8b5
commit 435e6ccd67

View File

@@ -16,7 +16,7 @@ various X86 malware tricks)."
HOMEPAGE="http://www.capstone-engine.org"
COPYRIGHT="2013-2020 COSEINC"
LICENSE="BSD (3-clause)"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/aquynh/capstone/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="7c81d798022f81e7507f1a60d6817f63aa76e489aa4e7055255f21a22f5e526a"
srcGitRev="27c8950fe865a2326b919444aeb3cf18963d96ba"
@@ -65,7 +65,8 @@ BUILD()
{
rm -rf build
mkdir build; cd build
cmake .. $cmakeDirArgs -DCMAKE_BUILD_TYPE=Release
cmake .. $cmakeDirArgs -DCMAKE_BUILD_TYPE=Release \
-DCAPSTONE_BUILD_STATIC=OFF
make $jobArgs
}