recipes: tools/qi: add symlink to identify the tools inside with the prefix 'dragora-'
[dragora.git] / recipes / devel / automake / recipe
blob86e698a51c516e67b1b6e0ecc81ad740aaf3e4f6
1 # Build recipe for automake.
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=automake
18 version=1.16.1
19 arch=noarch
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/devel"
25 tarname=${program}-${version}.tar.gz
27 # Remote source(s)
28 fetch=ftp://ftp.gnu.org/gnu/automake/$tarname
30 description="
31 A tool to generate Makefiles automatically.
33 Automake is a tool for automatically generating 'Makefile.in'
34 files compliant with the GNU Coding Standards.
36 Automake requires Perl and Autoconf.
39 homepage=http://www.gnu.org/software/automake
40 license=GPLv2+
42 # Source documentation
43 docs="AUTHORS COPYING ChangeLog NEWS README THANKS"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure $configure_args \
58      --libdir=/usr/lib${libSuffix} \
59      --infodir=$infodir \
60      --mandir=$mandir \
61      --docdir=$docsdir \
62      --build="$(cc -dumpmachine)"
64     make -j${jobs} V=1
65     make -j${jobs} DESTDIR="$destdir" install
67     # Replace hard links with soft links
68     (
69         cd "${destdir}/usr/bin" || exit 1
70         ln -sf aclocal-"${version%.*}" aclocal
71         ln -sf automake-"${version%.*}" automake
72     )
74     # Compress info documents deleting index file for the package
75     if test -d "${destdir}/$infodir"
76     then
77         rm -f "${destdir}/${infodir}/dir"
78         lzip -9 "${destdir}/${infodir}"/*
79     fi
81     # Compress and link man pages (if needed)
82     if test -d "${destdir}/$mandir"
83     then
84         (
85             cd "${destdir}/$mandir"
86             find . -type f -exec lzip -9 '{}' +
87             find . -type l | while read -r file
88             do
89                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
90                 rm -- "$file"
91             done
92         )
93     fi
95     # Copy documentation
96     mkdir -p "${destdir}${docsdir}"
98     for file in $docs
99     do
100         cp -p $file "${destdir}${docsdir}"
101     done