Remove pre-generated info files.

Fixes: #86
This commit is contained in:
Andrius Štikonas 2021-04-11 22:57:43 +01:00
parent 2423b77114
commit ddf05018a9
19 changed files with 48 additions and 7 deletions

View file

@ -9,6 +9,9 @@ src_prepare() {
rm demos/calc/calc.{c,h} demos/calc/calclex.c
autoreconf -f -i
# Pre-build texinfo files
find . -name '*.info*' -delete
}
src_configure() {
@ -19,3 +22,11 @@ src_configure() {
--target=i386-unknown-linux-gnu \
--libdir="${PREFIX}/lib/musl"
}
src_compile() {
make MAKEINFO=true DESTDIR="${DESTDIR}"
}
src_install() {
make MAKEINFO=true DESTDIR="${DESTDIR}" install
}