mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
27 lines
565 B
Bash
Executable file
27 lines
565 B
Bash
Executable file
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
|
# SPDX-FileCopyrightText: 2022 Samuel Tyler <samuel@samuelt.me>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
ACLOCAL=aclocal-1.8 AUTOMAKE=automeke-1.8 autoreconf-2.59 -f
|
|
|
|
rm help2man.info
|
|
touch help2man.info
|
|
rm help2man*.1
|
|
rm po/*.gmo
|
|
}
|
|
|
|
src_configure() {
|
|
CC=tcc ./configure --prefix="${PREFIX}" --disable-nls
|
|
}
|
|
|
|
src_compile() {
|
|
make "${MAKEJOBS}" MAKEINFO=true
|
|
}
|
|
|
|
src_install() {
|
|
make MAKEINFO=true DESTDIR="${DESTDIR}" install
|
|
}
|