begin to reorganize the build order
[dragora.git] / recipes / editors / nano / recipe
blob2e85ce21ea40a379fd2cc9a00a37aacda18d0929
1 # Build recipe for nano.
3 # Copyright (c) 2016-2017 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=nano
18 version=2.9.1
19 release=1
21 tarname=${program}-${version}.tar.gz
23 # Remote source(s)
24 fetch=http://www.nano-editor.org/dist/latest/$tarname
26 description="
27 The GNU nano editor.
29 GNU nano is designed to be a free replacement for the Pico text editor,
30 part of the Pine email suite from The University of Washington.
31 It aims to \"emulate Pico as closely as possible and perhaps
32 include extra functionality\".
35 homepage=http://www.nano-editor.org
36 license="GPLv3+, GFDL1.2"
38 # Source documentation
39 docs="AUTHORS COPYING COPYING.DOC ChangeLog NEWS README* THANKS TODO"
40 docsdir="${docdir}/${program}-${version}"
42 build()
44     set -e
46     unpack "${tardir}/$tarname"
48     cd "$srcdir"
50     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
51      $configure_args \
52      --libdir=/usr/lib${libSuffix} \
53      --infodir=$infodir \
54      --mandir=$mandir \
55      --docdir=$docsdir \
56      --enable-utf8 \
57      --enable-threads=posix \
58      --disable-wrapping-as-root \
59      --disable-glibtest \
60      --with-wordbounds \
61      --build="$(cc -dumpmachine)"
63     make -j${jobs} V=1
64     make -j${jobs} DESTDIR="$destdir" install
66     # Compress info documents deleting index file for the package
67     if test -d "${destdir}/$infodir"
68     then
69         rm -f "${destdir}/${infodir}/dir"
70         lzip -9 "${destdir}/${infodir}"/*
71     fi
73     # Compress and link man pages (if needed)
74     if test -d "${destdir}/$mandir"
75     then
76         (
77             cd "${destdir}/$mandir"
78             find . -type f -exec lzip -9 '{}' +
79             find . -type l | while read -r file
80             do
81                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
82                 rm -- "$file"
83             done
84         )
85     fi
87     # Copy documentation
88     mkdir -p "${destdir}${docsdir}"
89     cp -p $docs "${destdir}${docsdir}"