You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
661 B
32 lines
661 B
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu> |
|
# |
|
# SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
src_prepare() { |
|
default |
|
|
|
# Remove bison and flex generated files |
|
rm demos/calc/calc.{c,h} demos/calc/calclex.c |
|
|
|
autoreconf -f -i |
|
|
|
# Pre-build texinfo files |
|
find . -name '*.info*' -delete |
|
} |
|
|
|
src_configure() { |
|
./configure \ |
|
--prefix="${PREFIX}" \ |
|
--build=i386-unknown-linux-gnu \ |
|
--host=i386-unknown-linux-gnu \ |
|
--target=i386-unknown-linux-gnu \ |
|
--libdir="${PREFIX}/lib/musl" |
|
} |
|
|
|
src_compile() { |
|
make MAKEINFO=true DESTDIR="${DESTDIR}" |
|
} |
|
|
|
src_install() { |
|
make MAKEINFO=true DESTDIR="${DESTDIR}" install |
|
}
|
|
|