From ce52a1d15546d1c91e5417e9ff46bba661760df5 Mon Sep 17 00:00:00 2001 From: grizzly Date: Sat, 23 Aug 2025 11:54:03 -0400 Subject: [PATCH] start install script with typst --- install.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 install.sh diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..db5e94a --- /dev/null +++ b/install.sh @@ -0,0 +1,11 @@ +# install typst +echo "Installing Typst" +echo " - Downloading Typst binary archive..." +wget -nv https://github.com/typst/typst/releases/download/v0.13.1/typst-aarch64-unknown-linux-musl.tar.xz 1> /dev/null 2> /dev/null +echo " - Extracting archive..." +tar -xf typst-aarch64-unknown-linux-musl.tar.xz typst-aarch64-unknown-linux-musl/ +echo " - Cleanup..." +mv typst-aarch64-unknown-linux-musl/typst ./typst +rm -rf typst-aarch64-unknown-linux-musl/ +rm typst-aarch64-unknown-linux-musl.tar.xz +echo " - Done."