etc: Enable a tty for a serial port by default.
[dragora.git] / recipes / devel / cmake / recipe
blobb5bd512c433f27fb8bc763ada6436c3f6c86be26
1 # Build recipe for cmake.
3 # Copyright (c) 2018-2023 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 # Exit immediately on any error
18 set -e
20 program=cmake
21 version=3.25.2
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=devel
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch="https://cmake.org/files/v${version%.*}/$tarname"
32 description="
33 Cross-platform make system.
35 CMake is a family of tools designed to build, test and package
36 software.  CMake is used to control the software compilation process
37 using simple platform and compiler independent configuration files.
40 homepage=https://www.cmake.org
41 license=Custom
43 build()
45     unpack "${tardir}/$tarname"
47     cd "$srcdir"
49     # Set sane permissions
50     chmod -R u+w,go-w,a+rX-s .
52     rm -rf BUILD
53     mkdir BUILD
54     cd BUILD
56     ../configure \
57     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
58      --prefix=/usr \
59      --mandir=$mandir \
60      --docdir=$docsdir \
61      --system-libuv \
62      --system-curl \
63      --system-expat \
64      --system-zlib \
65      --system-bzip2 \
66      --system-libarchive \
67      --no-system-jsoncpp \
68      --parallel=$jobs
70     make -j${jobs} V=1
71     make -j${jobs} DESTDIR="$destdir" install