live-bootstrap/steps-guix/xz-5.2.4/pass1.sh

19 lines
335 B
Bash

# SPDX-License-Identifier: GPL-3.0-or-later
SEED_PREFIX="/bootstrap-seeds/xz-5.2.4"
src_configure() {
./configure \
--prefix="${SEED_PREFIX}" \
--disable-shared \
--enable-static \
--disable-nls
}
src_compile() {
default_src_compile
}
src_install() {
make DESTDIR="${DESTDIR}" install
}