contrib: add deps-bundle.sh

pull/117/head
Richard Patel 3 months ago
parent 2e90ea20b0
commit c452e2a4f7
  1. 1
      .gitignore
  2. 14
      contrib/deps-bundle.sh

1
.gitignore vendored

@ -21,6 +21,7 @@ OPTIONS-*
# deps.sh
opt/
deps-bundle.tar.zst
# Editor junk files
# Please just use a global gitignore conf, I'm tired of this

@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -e
# Packs a bundle of dependency files.
cd -- "$( dirname -- "${BASH_SOURCE[0]}" )"/..
rm -f deps-bundle.tar.zst
tar -Izstd -cf deps-bundle.tar.zst \
./opt/{include,lib,lib64}
echo "[+] Created deps-bundle.tar.zst"
Loading…
Cancel
Save