30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
#!/bin/sh
|
|
name="autoconf"
|
|
short_desc="M4 macros to configure software"
|
|
desc="Autoconf is an extensible package of M4 macros that produce shell scripts to automatically
|
|
configure software source code packages.
|
|
|
|
These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention.
|
|
|
|
Autoconf creates a configuration script for a package from a template file that lists the operating system
|
|
features that the package can use, in the form of M4 macro calls."
|
|
category="devel"
|
|
version="2.72"
|
|
maintainer="ffqq@danwin1210.de"
|
|
www="https://www.gnu.org/software/autoconf/"
|
|
master_site="ftp://ftp.gnu.org/gnu/autoconf"
|
|
source_name="$name-$version.tar.gz"
|
|
license_logic="single" # accepted values: single, and, or
|
|
licenses=("GPLv3")
|
|
|
|
build_dependencies=("devel/gmake" "lang/gcc" "devel/m4")
|
|
run_dependencies=("system/glibc" "devel/m4")
|
|
|
|
build_process() {
|
|
cd $name-$version || exit 1
|
|
export M4=gm4
|
|
./configure --prefix=/usr
|
|
make -j$(nproc)
|
|
make DESTDIR="$TAMANDUA_STAGE_DIR" install
|
|
rm -r $TAMANDUA_STAGE_DIR/usr/share/info
|
|
} |