repo/extra/cmake/build

29 lines
596 B
Plaintext
Raw Normal View History

2019-06-27 12:45:20 +00:00
#!/bin/sh -e
2019-11-17 01:19:20 +00:00
# Use cmake to build cmake if installed.
# This leads to a much faster build.
if kiss l cmake; then
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_SHARED_LIBS=True \
-DCMAKE_BUILD_TYPE=Release
2019-06-27 12:45:20 +00:00
2019-11-17 01:19:20 +00:00
cmake --build build
DESTDIR="$1" cmake --install build
else
./configure \
--prefix=/usr
make
make DESTDIR="$1" install
fi
2019-08-19 00:33:32 +00:00
# Grab the package version.
2019-08-21 00:28:20 +00:00
IFS=. read -r ver1 ver2 _ < "${0%/*}/version"
2019-08-19 00:33:32 +00:00
# Remove docs.
rm -rf "$1/usr/doc"
rm -rf "$1/usr/share/cmake-$ver1.$ver2/Help"