live-bootstrap/sysc/pkg-config-0.29.2/pkg-config-0.29.2.sh

19 lines
555 B
Bash
Raw Normal View History

2021-06-29 22:20:15 +01:00
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
#
# SPDX-License-Identifier: GPL-3.0-or-later
urls="http://gentoo.osuosl.org/distfiles/pkg-config-0.29.2.tar.gz"
2021-06-29 22:20:15 +01:00
src_prepare() {
2022-07-07 20:43:39 +01:00
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
2021-06-29 22:20:15 +01:00
}
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 \
2021-06-29 22:20:15 +01:00
--with-internal-glib
}