mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 11:36:32 +01:00
feat(steps-guix): add guile-zlib and guile-lzlib build steps and wire into manifest
This commit is contained in:
parent
bb2469202c
commit
8b2d63f128
5 changed files with 64 additions and 0 deletions
30
steps-guix/guile-lzlib-0.0.2/pass1.sh
Executable file
30
steps-guix/guile-lzlib-0.0.2/pass1.sh
Executable file
|
|
@ -0,0 +1,30 @@
|
||||||
|
# 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
|
||||||
|
}
|
||||||
1
steps-guix/guile-lzlib-0.0.2/sources
Normal file
1
steps-guix/guile-lzlib-0.0.2/sources
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
f https://deb.debian.org/debian/pool/main/g/guile-lzlib/guile-lzlib_0.0.2.orig.tar.gz 8623db77d447e7b9ffbfcbc288390e706a6b1a89b1171daed60874cfec7e4f87 guile-lzlib_0.0.2.orig.tar.gz
|
||||||
30
steps-guix/guile-zlib-0.2.2/pass1.sh
Executable file
30
steps-guix/guile-zlib-0.2.2/pass1.sh
Executable file
|
|
@ -0,0 +1,30 @@
|
||||||
|
# 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
|
||||||
|
}
|
||||||
1
steps-guix/guile-zlib-0.2.2/sources
Normal file
1
steps-guix/guile-zlib-0.2.2/sources
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
f https://deb.debian.org/debian/pool/main/g/guile-zlib/guile-zlib_0.2.2.orig.tar.gz 6f6cca4b32ca79f3f4627cdb7ea68569a3cc38be60468991e2b5c085783e38c1 guile-zlib_0.2.2.orig.tar.gz
|
||||||
|
|
@ -26,5 +26,7 @@ build: guile-gnutls-v5.0.1
|
||||||
build: unzip-6.0
|
build: unzip-6.0
|
||||||
build: sqlite-3510200
|
build: sqlite-3510200
|
||||||
build: guile-sqlite3-0.1.3
|
build: guile-sqlite3-0.1.3
|
||||||
|
build: guile-zlib-0.2.2
|
||||||
|
build: guile-lzlib-0.0.2
|
||||||
|
|
||||||
improve: after
|
improve: after
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue