recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / tools / gawk / recipe
blobe97acaacb8f4e55fd4a6365ec231c9627a6e8fb2
1 # Build recipe for gawk.
3 # Copyright (c) 2016-2019, 2021-2022 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=gawk
21 version=5.1.1
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 tarname=${program}-${version}.tar.lz
29 # Remote source(s)
30 fetch=https://ftp.gnu.org/gnu/gawk/$tarname
32 description="
33 Pattern scanning and processing language.
35 The awk utility interprets a special-purpose programming language
36 that makes it possible to handle simple data-reformatting jobs
37 with just a few lines of code.  It is a free version of 'awk'.
39 GNU awk implements the AWK utility which is part of
40 IEEE Std 1003.1 Shell and Utilities (XCU).
43 homepage=https://www.gnu.org/software/gawk
44 license=GPLv3+
46 # Source documentation
47 docs="AUTHORS COPYING ChangeLog NEWS README"
48 docsdir="${docdir}/${program}-${version}"
50 build()
52     unpack "${tardir}/$tarname"
54     cd "$srcdir"
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     ./configure CPPFLAGS="$QICPPFLAGS" \
60     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
61      $configure_args \
62      --libdir=/usr/lib${libSuffix} \
63      --infodir=$infodir \
64      --mandir=$mandir \
65      --docdir=$docsdir \
66      --without-libsigsegv-prefix \
67      --enable-nls \
68      --build="$(gcc -dumpmachine)"
70     make -j${jobs} V=1
71     make -j${jobs} DESTDIR="$destdir" install
73     # Not needed for us when 'gawk.sh' is installed
74     rm -f "${destdir}/etc/profile.d/gawk.csh"
76     # To handle config file via graft(1)
77     touch "${destdir}/etc/profile.d/.graft-config"
79     # Replace hard link with a soft link
80     (
81         cd "${destdir}/usr/bin" || exit 1
82         ln -sf gawk-${version} gawk
83     )
85     # Provide manual page compatibility
86     (
87         cd "${destdir}/${mandir}/man1" || exit 1
88         ln -sf gawk.1 awk.1
89     )
91     # Compress info documents deleting index file for the package
92     if test -d "${destdir}/$infodir"
93     then
94         rm -f "${destdir}/${infodir}/dir"
95         lzip -9 "${destdir}/${infodir}"/*
96     fi
98     # Compress and link man pages (if needed)
99     if test -d "${destdir}/$mandir"
100     then
101         (
102             cd "${destdir}/$mandir"
103             find . -type f -exec lzip -9 {} +
104             find . -type l | while read -r file
105             do
106                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
107                 rm -- "$file"
108             done
109         )
110     fi
112     # Copy documentation
113     mkdir -p "${destdir}/$docsdir"
114     cp -p $docs "${destdir}/$docsdir"