live-bootstrap/sysa/make-3.82/make-3.82.sh

29 lines
597 B
Bash
Raw Normal View History

# SPDX-FileCopyrightText: 2021-22 fosslinux <fosslinux@aussies.space>
2021-08-04 03:45:39 +01:00
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default
rm doc/make.info
touch doc/make.info
# We don't have autopoint from gettext yet
2022-07-07 20:43:39 +01:00
AUTOPOINT=true AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.64 autoreconf-2.64 -fi
2021-08-04 03:45:39 +01:00
}
src_configure() {
./configure \
--prefix="${PREFIX}" \
--build=i386-unknown-linux-gnu \
2021-08-04 03:45:39 +01:00
--disable-nls
}
src_compile() {
make MAKEINFO="true"
}
src_install() {
make install MAKEINFO="true" DESTDIR="${DESTDIR}"
}