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

22 lines
331 B
Bash
Raw Normal View History

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