mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 19:46:31 +01:00
18 lines
346 B
Bash
18 lines
346 B
Bash
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
SEED_PREFIX="/bootstrap-seeds/gzip-1.9"
|
|
|
|
src_configure() {
|
|
CFLAGS="-O2" LDFLAGS="-static" ./configure \
|
|
--prefix="${SEED_PREFIX}" \
|
|
--disable-nls \
|
|
ac_cv_prog_LESS="less"
|
|
}
|
|
|
|
src_compile() {
|
|
default_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR="${DESTDIR}" install
|
|
}
|