Add make 3.82 (sysa)

This commit is contained in:
fosslinux 2021-08-04 12:45:39 +10:00
parent b93a931a53
commit 1e19193408
5 changed files with 38 additions and 8 deletions

27
sysa/make-3.82/make-3.82.sh Executable file
View file

@ -0,0 +1,27 @@
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
#
# 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
AUTOPOINT=true autoreconf -fi
}
src_configure() {
./configure \
--prefix="${PREFIX}" \
--disable-nls
}
src_compile() {
make MAKEINFO="true"
}
src_install() {
make install MAKEINFO="true" DESTDIR="${DESTDIR}"
}