Marcus Rueckert
cd045ddeef
https://ghostty.org/docs/install/release-notes/1-1-0
- drop f60068eabd
.diff
- new subpackage for nautilus plugin
new BuildRequires python3-nautilus-devel python3-gobject
OBS-URL: https://build.opensuse.org/package/show/X11:terminals/ghostty?expand=0&rev=18
16 lines
397 B
Bash
16 lines
397 B
Bash
#!/bin/sh
|
|
set -x
|
|
# The dependencies tarball is quite large, so we
|
|
# reduce it here by removing unecessary files for
|
|
# building (e.g, test files).
|
|
|
|
export SUBDIR="vendor/zig/"
|
|
export ZIG_GLOBAL_CACHE_DIR="${PWD}/${SUBDIR}"
|
|
export ZSTD_CLEVEL="9"
|
|
|
|
./nix/build-support/fetch-zig-cache.sh
|
|
|
|
find "${SUBDIR}" -type d -iname test -print0 | xargs -r0 rm -rv
|
|
|
|
tar --zstd -cvf ../vendor.tar.zst "${SUBDIR}"
|