fix(steps-guix/libtasn1): bootstrap with local gnulib bundle via GNULIB_SRCDIR and no-git

This commit is contained in:
vxtls 2026-02-24 22:51:18 -05:00
parent 1933332d36
commit 494b08cdb2
5 changed files with 61 additions and 4 deletions

View file

@ -0,0 +1,26 @@
# 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" \
./configure \
--prefix="${PREFIX}" \
--libdir="${LIBDIR}" \
--host="${host_triplet}" \
--build="${host_triplet}" \
--disable-documentation
}
src_compile() {
default_src_compile
}
src_install() {
default_src_install
}