live-bootstrap/sysa/automake-1.15.1/automake-1.15.1.sh

24 lines
372 B
Bash
Raw Normal View History

2021-04-01 00:28:30 +01:00
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default
2021-04-01 00:28:30 +01:00
./bootstrap
rm doc/automake-history.info
2021-04-01 00:28:30 +01:00
}
src_configure() {
./configure --prefix=/after
}
src_compile() {
make MAKEINFO=true CC=tcc
}
src_install() {
make install MAKEINFO=true DESTDIR="${DESTDIR}"
2021-04-01 00:28:30 +01:00
}