recipes: upgrade cmake to version 3.16.3 with libuv 1.34.2
[dragora.git] / recipes / devel / cmake / recipe
blob84e06676b96107af1a3944eb9c8afee923a917cd
1 # Build recipe for cmake.
3 # Copyright (c) 2018-2020 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=cmake
18 version=3.16.3
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/devel"
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch="http://cmake.org/files/v${version%.*}/$tarname"
29 description="
30 Cross-platform make system.
32 CMake is a family of tools designed to build, test and package
33 software.  CMake is used to control the software compilation process
34 using simple platform and compiler independent configuration files.
37 homepage=http://www.cmake.org
38 license=Custom
40 build()
42     set -e
44     unpack "${tardir}/$tarname"
46     cd "$srcdir"
48     # Set sane permissions
49     chmod -R u+w,go-w,a+rX-s .
51     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
52     ./bootstrap \
53      --prefix=/usr \
54      --docdir=/share/doc/${program}-${version} \
55      --system-libs \
56      --no-system-jsoncpp \
57      --no-system-librhash \
58      --parallel=$jobs
60     make -j${jobs} V=1
61     make -j${jobs} DESTDIR="$destdir" install