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

22 lines
345 B
Bash
Raw Normal View History

2021-03-25 20:39:08 +00:00
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default
2021-03-25 20:39:08 +00:00
./bootstrap
2021-03-25 20:39:08 +00:00
}
src_configure() {
./configure CC=tcc --prefix=/after
}
src_compile() {
make MAKEINFO=true CC=tcc
2021-03-25 20:39:08 +00:00
}
src_install() {
make install MAKEINFO=true DESTDIR="${DESTDIR}"
2021-03-25 20:39:08 +00:00
}