recipes: Replace 'outdir' with package hash tags
[dragora.git] / recipes / tools / groff / recipe
blob087c07504e041e3eb86623e49a4db89d5f7b2e45
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 program=groff
18 version=1.22.4
19 release=1
21 # Define hash tag to categorize the package name output
22 pkghashtag=tools
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://ftp.gnu.org/gnu/groff/$tarname
29 description="
30 System for typesetting documents.
32 The groff (GNU roff) software is a typesetting package which
33 reads plain text mixed with formatting commands and produces
34 formatted output.
37 homepage=http://www.gnu.org/software/groff
38 license=GPLv3+
40 # Source documentation
41 docs="
42  BUG-REPORT COPYING ChangeLog FDL LICENSES \
43  NEWS PROBLEMS README TODO
46 docsdir="${docdir}/${program}-${version}"
48 # Limite the number of parallel jobs for this version of groff
49 jobs=1
51 build()
53     set -e
55     unpack "${tardir}/$tarname"
57     cd "$srcdir"
59     # Set sane permissions
60     chmod -R u+w,go-w,a+rX-s .
62     ./configure CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" \
63     LDFLAGS="$QILDFLAGS -static" \
64      $configure_args \
65      --libdir=/usr/lib${libSuffix} \
66      --infodir=$infodir \
67      --mandir=$mandir \
68      --docdir=$docsdir \
69      --disable-rpath \
70      --with-doc=no \
71      --without-x \
72      --build="$(cc -dumpmachine)"
74     make -j${jobs} V=1
75     make -j${jobs} DESTDIR="$destdir" install
77     # Remove generated charset.alias
78     rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
80     # Compress info documents deleting index file for the package
81     if test -d "${destdir}/$infodir"
82     then
83         rm -f "${destdir}/${infodir}/dir"
84         lzip -9 "${destdir}/${infodir}"/*
85     fi
87     # Compress and link man pages (if needed)
88     if test -d "${destdir}/$mandir"
89     then
90         (
91             cd "${destdir}/$mandir"
92             find . -type f -exec lzip -9 '{}' +
93             find . -type l | while read -r file
94             do
95                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
96                 rm -- "$file"
97             done
98         )
99     fi
101     # Copy documentation
102     mkdir -p "${destdir}${docsdir}"
104     for file in $docs
105     do
106         cp -p $file "${destdir}${docsdir}"
107     done