opt/cmake/Pkgfile
Jose V Beneyto 1255260348 cmake: updated to 3.2.0
Also modified data installation directory to use cmake instead of cmake-x.y.
That will help to see footprint differences between commits.
2015-03-11 14:42:45 +00:00

33 lines
879 B
Plaintext

# Description: A cross-platform, open-source make system.
# URL: http://www.cmake.org/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Mark Rosenstand, mark at borkware dot net
# Depends on: curl libarchive expat ncurses
name=cmake
version=3.2.0
release=1
source=(http://www.cmake.org/files/v${version%.*}/$name-$version.tar.gz)
build() {
cd $name-$version
# fix installation path
sed -i Source/CMakeInstallDestinations.cmake \
-e 's|share/cmake-${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}|share/cmake|'
./bootstrap \
--prefix=/usr \
--system-libs \
--system-libarchive \
--no-system-jsoncpp \
--parallel=$(sed -e 's/.*-j *\([0-9]\+\).*/\1/' <<< $MAKEFLAGS)
make
make DESTDIR=$PKG install
rm -r $PKG/usr/doc
# keep versioned dir for compatibility
ln -sf $name $PKG/usr/share/$name-${version%.*}
}