live-bootstrap/sysa/pkg-config-0.29.2/pkg-config-0.29.2.sh
2021-07-15 17:57:45 +01:00

16 lines
438 B
Bash
Executable file

# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
autoreconf -fi
}
src_configure() {
# We use internal glib because standalone glib library depends on
# pkg-config and other software (python/meson) that we do not have.
./configure \
--prefix="${PREFIX}" \
--build=i386-unknown-linux-musl \
--with-internal-glib
}