Upgrade of GNU Make to the version 4.4.1
[dragora.git] / recipes / devel / make / recipe
blobc241415c7915497479041c71203854cc6bfe3232
1 # Build recipe for make.
3 # Copyright (c) 2016-2020, 2022-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=make
21 version=4.4.1
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=devel
27 tarname=${program}-${version}.tar.lz
29 # Remote source(s)
30 fetch="
31   https://ftp.gnu.org/gnu/make/$tarname
32   https://mirror.cedia.org.ec/gnu/make/$tarname
35 description="
36 The weighted make.
38 GNU Make is a tool which controls the generation of executables and
39 other non-source files of a program from the program's source files.
41 Make gets its knowledge of how to build your program from a file
42 called the makefile, which lists each of the non-source files and
43 how to compute it from other files.  When you write a program, you
44 should write a makefile for it, so that it is possible to use Make
45 to build and install the program.
48 homepage=https://www.gnu.org/software/make
49 license=GPLv3+
51 # Source documentation
52 docs="AUTHORS COPYING ChangeLog NEWS README"
53 docsdir="${docdir}/${program}-${version}"
55 build()
57     unpack "${tardir}/$tarname"
59     cd "$srcdir"
61     # Set sane permissions
62     chmod -R u+w,go-w,a+rX-s .
64     ./configure CPPFLAGS="$QICPPFLAGS" \
65     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
66      $configure_args \
67      --libdir=/usr/lib${libSuffix} \
68      --infodir=$infodir \
69      --mandir=$mandir \
70      --with-guile \
71      --build="$(gcc -dumpmachine)"
73     make -j${jobs} V=1
74     make -j${jobs} DESTDIR="$destdir" install-strip
76     # Make symlink for "GNU make"
77     ( cd "${destdir}/usr/bin" && ln -sf make gmake )
79     # Compress info documents deleting index file for the package
80     if test -d "${destdir}/$infodir"
81     then
82         rm -f "${destdir}/${infodir}/dir"
83         lzip -9 "${destdir}/${infodir}"/*
84     fi
86     # Compress and link man pages (if needed)
87     if test -d "${destdir}/$mandir"
88     then
89         (
90             cd "${destdir}/$mandir"
91             find . -type f -exec lzip -9 {} +
92             find . -type l | while read -r file
93             do
94                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
95                 rm -- "$file"
96             done
97         )
98     fi
100     # Copy documentation
101     mkdir -p "${destdir}/$docsdir"
102     cp -p $docs "${destdir}/$docsdir"