mirror of
https://github.com/siderolabs/extensions.git
synced 2025-09-29 01:22:08 +02:00
| Package | Update | Change | |---|---|---| | [https://github.com/qemu/qemu.git](https://togithub.com/qemu/qemu) | minor | `8.0.2` -> `v8.1.0` | | [https://gitlab.com/nvidia/container-toolkit/container-toolkit.git](https://gitlab.com/nvidia/container-toolkit/container-toolkit) | minor | `v1.13.5` -> `v1.14.0` | | [https://gitlab.com/nvidia/container-toolkit/libnvidia-container.git](https://gitlab.com/nvidia/container-toolkit/libnvidia-container) | minor | `v1.13.5` -> `v1.14.0` | | [https://gitlab.gnome.org/GNOME/glib.git](https://gitlab.gnome.org/GNOME/glib) | minor | `2.76.3` -> `2.77.3` | | [siderolabs/bldr](https://togithub.com/siderolabs/bldr) | patch | `v0.2.0` -> `v0.2.1` | | [tailscale/tailscale](https://togithub.com/tailscale/tailscale) | minor | `1.46.1` -> `1.48.1` | Also fix the wolfi-base variable to get renovate updates. Signed-off-by: Noel Georgi <git@frezbo.dev>
36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
name: zlib
|
|
variant: scratch
|
|
shell: /bin/bash
|
|
install:
|
|
- build-base
|
|
- bash
|
|
dependencies:
|
|
- image: cgr.dev/chainguard/wolfi-base@{{ .WOLFI_BASE_REF }}
|
|
steps:
|
|
- sources:
|
|
- url: https://zlib.net/fossils/zlib-{{ .ZLIB_VERSION }}.tar.gz
|
|
destination: zlib.tar.gz
|
|
sha256: b3a24de97a8fdbc835b9833169501030b8977031bcb54b3b3ac13740f846ab30
|
|
sha512: 99f0e843f52290e6950cc328820c0f322a4d934a504f66c7caa76bd0cc17ece4bf0546424fc95135de85a2656fed5115abb835fd8d8a390d60ffaf946c8887ad
|
|
prepare:
|
|
- |
|
|
tar -xf zlib.tar.gz --strip-components=1
|
|
mkdir build
|
|
cd build
|
|
|
|
../configure \
|
|
--prefix=/usr/local
|
|
build:
|
|
- |
|
|
cd build
|
|
make -j $(nproc)
|
|
install:
|
|
- |
|
|
cd build
|
|
make DESTDIR=/rootfs install
|
|
# we only need the libs and headers, remove everything else
|
|
find /rootfs/usr/local/ -type d \( -name bin -o -name sbin -o -name share \) -prune -exec rm -rf {} \;
|
|
finalize:
|
|
- from: /rootfs
|
|
to: /rootfs
|