opt/cmake/Pkgfile

36 lines
888 B
Plaintext

# Description: A cross-platform, open-source make system
# URL: https://www.cmake.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: curl libarchive expat ncurses
# Optional: python3-sphinx
name=cmake
version=3.19.5
release=1
source=(https://cmake.org/files/v${version%.*}/$name-$version.tar.gz)
build() {
cd $name-$version
sed -i Source/CMakeInstallDestinations.cmake \
-e 's|share/cmake-${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}|share/cmake|'
./bootstrap \
--prefix=/usr \
--system-curl \
--system-expat \
--system-zlib \
--system-bzip2 \
--system-libarchive \
--system-zstd \
--no-system-librhash \
--parallel=${JOBS:-1} \
$(prt-get isinst python3-sphinx >/dev/null && echo --sphinx-man)
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{doc,share/cmake/Help}
ln -sf $name $PKG/usr/share/$name-${version%.*}
}