mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-08 04:15:24 +01:00
22 lines
391 B
Bash
Executable file
22 lines
391 B
Bash
Executable file
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
rm configure
|
|
autoconf-2.52
|
|
|
|
sed -i '/^acdatadir/s:$:-2.13:' Makefile.in
|
|
}
|
|
|
|
src_configure() {
|
|
./configure --prefix=${PREFIX} --program-suffix=-2.13
|
|
}
|
|
|
|
src_compile() {
|
|
make MAKEINFO=true
|
|
}
|
|
|
|
src_install() {
|
|
make install MAKEINFO=true
|
|
}
|