stages: 2/04-iso: Do not include kernel build/source tree in the LiveCD
[dragora.git] / recipes / tools / groff / recipe
blobce662be9bc745fb8f550e90604fc70df7b6c450d
1 # Build recipe for groff.
3 # Copyright (c) 2016-2018 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=groff
21 version=1.22.4
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://ftp.gnu.org/gnu/groff/$tarname
32 description="
33 System for typesetting documents.
35 The groff (GNU roff) software is a typesetting package which
36 reads plain text mixed with formatting commands and produces
37 formatted output.
40 homepage=https://www.gnu.org/software/groff
41 license=GPLv3+
43 # Source documentation
44 docs="
45  BUG-REPORT COPYING ChangeLog FDL LICENSES \
46  NEWS PROBLEMS README TODO
49 docsdir="${docdir}/${program}-${version}"
51 # Limite the number of parallel jobs for this version of groff
52 jobs=1
54 build()
56     unpack "${tardir}/$tarname"
58     cd "$srcdir"
60     # Set sane permissions
61     chmod -R u+w,go-w,a+rX-s .
63     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" \
64     LDFLAGS="$QILDFLAGS -static" \
65      $configure_args \
66      --libdir=/usr/lib${libSuffix} \
67      --infodir=$infodir \
68      --mandir=$mandir \
69      --docdir=$docsdir \
70      --disable-rpath \
71      --with-doc=no \
72      --without-x \
73      --build="$(gcc -dumpmachine)"
75     make -j${jobs} V=1
76     make -j${jobs} DESTDIR="$destdir" install
78     # Remove generated charset.alias
79     rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
81     # Compress info documents deleting index file for the package
82     if test -d "${destdir}/$infodir"
83     then
84         rm -f "${destdir}/${infodir}/dir"
85         lzip -9 "${destdir}/${infodir}"/*
86     fi
88     # Compress and link man pages (if needed)
89     if test -d "${destdir}/$mandir"
90     then
91         (
92             cd "${destdir}/$mandir"
93             find . -type f -exec lzip -9 {} +
94             find . -type l | while read -r file
95             do
96                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
97                 rm -- "$file"
98             done
99         )
100     fi
102     # Copy documentation
103     mkdir -p "${destdir}/$docsdir"
105     for file in $docs
106     do
107         cp -p $file "${destdir}/$docsdir"
108     done