mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 19:46:31 +01:00
48 lines
1.1 KiB
Bash
48 lines
1.1 KiB
Bash
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
local host_triplet
|
|
host_triplet="$(gcc -dumpmachine)"
|
|
|
|
PATH="${PREFIX}/bin:/usr/bin:/bin" \
|
|
PKG_CONFIG_PATH="${LIBDIR}/pkgconfig:${PREFIX}/lib/pkgconfig" \
|
|
./configure \
|
|
--prefix="${PREFIX}" \
|
|
--libdir="${LIBDIR}" \
|
|
--includedir="${PREFIX}/include" \
|
|
--host="${host_triplet}" \
|
|
--build="${host_triplet}" \
|
|
--with-distro=lfs \
|
|
--enable-dbm \
|
|
--enable-static \
|
|
--enable-shared \
|
|
--disable-glib \
|
|
--disable-gobject \
|
|
--disable-gtk \
|
|
--disable-gtk3 \
|
|
--disable-qt3 \
|
|
--disable-qt4 \
|
|
--disable-qt5 \
|
|
--disable-python \
|
|
--disable-python-dbus \
|
|
--disable-pygobject \
|
|
--disable-mono \
|
|
--disable-monodoc \
|
|
--disable-autoipd \
|
|
--disable-doxygen-doc \
|
|
--disable-manpages \
|
|
--disable-xmltoman \
|
|
--disable-tests
|
|
}
|
|
|
|
src_compile() {
|
|
default_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
default_src_install
|
|
}
|