live-bootstrap/sysa/gperf-3.1/gperf-3.1.sh

20 lines
393 B
Bash
Raw Normal View History

2021-07-08 01:42:56 +01:00
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
find . -name '*.info*' -delete
for d in doc tests lib src; do
cd $d
ln -s ../aclocal.m4 aclocal.m4
autoreconf-2.69 -fi
cd ..
done
autoreconf-2.69 -fi
}
src_configure() {
./configure --prefix="${PREFIX}"
}