mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-24 20:16:32 +01:00
48 lines
1.4 KiB
Bash
48 lines
1.4 KiB
Bash
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
default
|
|
autoreconf -fi
|
|
}
|
|
|
|
src_configure() {
|
|
local host_triplet pkg_config_path
|
|
host_triplet="$(gcc -dumpmachine)"
|
|
pkg_config_path="${LIBDIR}/pkgconfig"
|
|
|
|
PATH="${PREFIX}/bin:/usr/bin:/bin" \
|
|
PKG_CONFIG_LIBDIR="${pkg_config_path}" \
|
|
PKG_CONFIG_PATH="${pkg_config_path}:${PREFIX}/lib/pkgconfig" \
|
|
LD_LIBRARY_PATH="${LIBDIR}:${LD_LIBRARY_PATH}" \
|
|
./configure \
|
|
--prefix="${PREFIX}" \
|
|
--libdir="${LIBDIR}" \
|
|
--host="${host_triplet}" \
|
|
--build="${host_triplet}"
|
|
}
|
|
|
|
src_compile() {
|
|
default_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
default_src_install
|
|
}
|
|
|
|
src_postprocess() {
|
|
local guile_site_path guile_core_site guile_site_ccache guile_core_ccache
|
|
|
|
default_src_postprocess
|
|
|
|
guile_site_path="${DESTDIR}${PREFIX}/share/guile/site/3.0"
|
|
guile_core_site="${PREFIX}/share/guile/3.0"
|
|
guile_site_ccache="${DESTDIR}${LIBDIR}/guile/3.0/site-ccache"
|
|
guile_core_ccache="${LIBDIR}/guile/3.0/ccache"
|
|
|
|
PATH="${DESTDIR}${PREFIX}/bin:${PREFIX}/bin:/usr/bin:/bin" \
|
|
GUILE_LOAD_PATH="${guile_site_path}:${guile_core_site}" \
|
|
GUILE_LOAD_COMPILED_PATH="${guile_site_ccache}:${guile_core_ccache}" \
|
|
GUILE_SYSTEM_PATH="${guile_site_path}:${guile_core_site}" \
|
|
GUILE_SYSTEM_COMPILED_PATH="${guile_site_ccache}:${guile_core_ccache}" \
|
|
"${DESTDIR}${PREFIX}/bin/guile" -c '(use-modules (lzlib)) (display "lzlib-module-ok\n")'
|
|
}
|