recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / tools / nano / recipe
blob0e6fa89b4782a22ab87771ba3ab4a991a0b829ca
1 # Build recipe for nano.
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=nano
21 version=6.0
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://www.nano-editor.org/dist/latest/$tarname
32 description="
33 The GNU nano editor.
35 GNU nano is designed to be a free replacement for the Pico text editor,
36 part of the Pine email suite from The University of Washington. It aims
37 to \"emulate Pico as closely as possible and perhaps include extra
38 functionality\".
41 homepage=https://www.nano-editor.org
42 license="GPLv3+, GFDL1.2"
44 # Source documentation
45 docs="AUTHORS COPYING COPYING.DOC ChangeLog NEWS README* THANKS TODO"
46 docsdir="${docdir}/${program}-${version}"
48 build()
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure CPPFLAGS="$QICPPFLAGS" \
58     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
59      $configure_args \
60      --libdir=/usr/lib${libSuffix} \
61      --infodir=$infodir \
62      --mandir=$mandir \
63      --docdir=$docsdir \
64      --enable-utf8 \
65      --enable-nls \
66      --disable-wrapping-as-root \
67      --build="$(gcc -dumpmachine)"
69     make -j${jobs} V=1
70     make -j${jobs} DESTDIR="$destdir" install
72     # Compress info documents deleting index file for the package
73     if test -d "${destdir}/$infodir"
74     then
75         rm -f "${destdir}/${infodir}/dir"
76         lzip -9 "${destdir}/${infodir}"/*
77     fi
79     # Compress and link man pages (if needed)
80     if test -d "${destdir}/$mandir"
81     then
82         (
83             cd "${destdir}/$mandir"
84             find . -type f -exec lzip -9 {} +
85             find . -type l | while read -r file
86             do
87                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
88                 rm -- "$file"
89             done
90         )
91     fi
93     # Copy documentation
94     mkdir -p "${destdir}/$docsdir"
95     cp -p $docs "${destdir}/$docsdir"