contrib: add deps-bundle.sh
This commit is contained in:
parent
2e90ea20b0
commit
c452e2a4f7
|
@ -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…
Reference in New Issue