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.
22 tarname=${program}-${version}.tar.gz
25 fetch=ftp://ftp.gnu.org/gnu/autoconf/$tarname
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}"
45 unpack "${tardir}/$tarname"
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} \
58 --build="$(cc -dumpmachine)"
61 make -j${jobs} DESTDIR="$destdir" install
63 # Compress info documents deleting index file for the package
64 if test -d "${destdir}/$infodir"
66 rm -f "${destdir}/${infodir}/dir"
67 lzip -9 "${destdir}/${infodir}"/*
70 # Compress and link man pages (if needed)
71 if test -d "${destdir}/$mandir"
74 cd "${destdir}/$mandir"
75 find . -type f -exec lzip -9 '{}' +
76 find . -type l | while read -r file
78 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
85 mkdir -p "${destdir}${docsdir}"
89 cp -p $file "${destdir}${docsdir}"