start applying Apache 2.0 for recipes
[dragora.git] / recipes / devel / autoconf / recipe
blob07f5454b67bc3f2a125bba55aef4a61792531423
1 # Build recipe for autoconf.
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=autoconf
18 version=2.69
19 arch=noarch
20 release=1
22 tarname=${program}-${version}.tar.gz
24 # Remote source(s)
25 fetch=ftp://ftp.gnu.org/gnu/autoconf/$tarname
27 description="
28 An extensible package of M4 macros.
30 Autoconf is an extensible package of M4 macros that produce shell
31 scripts to automatically configure software source code packages.
34 homepage=http://www.gnu.org/software/autoconf
35 license="GPLv2+, GPLv3+ & exception"
37 # Source documentation
38 docs="AUTHORS BUGS COPYING* ChangeLog NEWS README THANKS TODO"
39 docsdir="${docdir}/${program}-${version}"
41 build()
43     set -e
45     unpack "${tardir}/$tarname"
47     cd "$srcdir"
49     # Update for hosts based on musl
50     cp -f "${worktree}/archive/common/config.guess" build-aux/config.guess
51     cp -f "${worktree}/archive/common/config.sub" build-aux/config.sub
53     ./configure $configure_args \
54      --libdir=/usr/lib${libSuffix} \
55      --infodir=$infodir \
56      --mandir=$mandir \
57      --docdir=$docsdir \
58      --build="$(cc -dumpmachine)"
60     make -j${jobs}
61     make -j${jobs} DESTDIR="$destdir" install
63     # Compress info documents deleting index file for the package
64     if test -d "${destdir}/$infodir"
65     then
66         rm -f "${destdir}/${infodir}/dir"
67         lzip -9 "${destdir}/${infodir}"/*
68     fi
70     # Compress and link man pages (if needed)
71     if test -d "${destdir}/$mandir"
72     then
73         (
74             cd "${destdir}/$mandir"
75             find . -type f -exec lzip -9 '{}' +
76             find . -type l | while read -r file
77             do
78                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
79                 rm -- "$file"
80             done
81         )
82     fi
84     # Copy documentation
85     mkdir -p "${destdir}${docsdir}"
87     for file in $docs
88     do
89         cp -p $file "${destdir}${docsdir}"
90     done