live-bootstrap/sysc/mpc-1.2.1/mpc-1.2.1.sh

26 lines
476 B
Bash
Raw Normal View History

2021-04-18 00:42:47 +01:00
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default
2021-04-18 00:42:47 +01:00
find . -name '*.info' -delete
autoreconf-2.69 -fi
}
src_configure() {
./configure \
--prefix="${PREFIX}" \
--libdir="${PREFIX}/lib/musl" \
2021-06-30 18:04:05 +01:00
--disable-shared
2021-04-18 00:42:47 +01:00
}
src_compile() {
make MAKEINFO=true DESTDIR="${DESTDIR}"
}
src_install() {
make MAKEINFO=true DESTDIR="${DESTDIR}" install
}