smlinux/base/cmake/cmake.SMBuild
SMLinux 2f32197590 -> Overhauled build files in base. Almost all variable names in all build files are now in lower case to
prevent accidents with the general build environment. More changes in the build system and other section
   build files to follow.
-> Fixed library path in base/libical build file to prevent creation of lib64 directory
-> Fixed code that searches for an SMBuild file inside a package installer when installing from a package
   using base/pkgtools's installpkg script
-> Added a missing brace in base/findutils build file
-> Upgraded base/ntfs-3g to 2021.8.22
-> Temporarily removed rm -f command used to discard man pages in base/openssl build file
-> Added if/else check in base/rust build file to only extract rust toolchain in the absence of
   rust installation on the system
-> Upgraded base/syssstat to 12.5.5
2022-02-13 13:46:58 +05:30

40 lines
892 B
Text
Executable file

app=cmake
version=3.17.3
build=1sml
homepage='http://www.cmake.org'
download='https://cmake.org/files/v3.17/cmake-3.17.3.tar.gz'
desc="Cross-platform, open-source make system"
requires="gcc-libs openssl libunistring libidn2"
build() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
para="$(echo $MAKEFLAGS | sed 's/-j//')"
./bootstrap \
--prefix="" \
--no-system-curl \
--no-system-expat \
--no-system-jsoncpp \
--no-system-zlib \
--no-system-bzip2 \
--no-system-libarchive \
--no-qt-gui \
--parallel="$para"
make
make install DESTDIR=$pkg
cp Licenses/* Copyright.txt $pkgdocs/
mkfinalpkg
}
sha512sums="
e68eb80a294a4ee441f5e29b95a6450677ef8d7a8aa40e29e7475db9aa7566edd903ce4bfb57a0795f8e31dd29f16620f588b81b5fd9f74e80f996de980bccd3 cmake-3.17.3.tar.lz
"