mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 18:35:24 +01:00
19 lines
310 B
Bash
Executable file
19 lines
310 B
Bash
Executable file
# SPDX-FileCopyrightText: 2024 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
autoreconf-2.71 -fi
|
|
rm man/*.1
|
|
|
|
# gperf
|
|
rm lib/iconv_open*.h
|
|
|
|
. ../../import-gnulib.sh
|
|
}
|
|
|
|
src_configure() {
|
|
./configure --prefix="${PREFIX}"
|
|
}
|