From f8b3a9d055bfc0e4bb9e9a570ccc8853ec38a225 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 6 Nov 2022 20:48:18 +0100 Subject: Use tar.gz for emoji instead of .zip --- README.md | 2 +- install.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9a9bac5..3aef04e 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ EXAMPLES: ``` ## Installation If you are running arch linux then you can install QuickMedia from aur (https://aur.archlinux.org/packages/quickmedia-git/), otherwise you will need to first install [sibs](https://git.dec05eba.com/sibs/) and then run `./install.sh` as root.\ -`unzip` and curl needs to be installed to run the `install.sh` script.\ +`atr` and curl needs to be installed to run the `install.sh` script.\ Installing `lld` (the LLVM linker) can improve compile times. ## Dependencies ### Libraries diff --git a/install.sh b/install.sh index ff06f82..a305ace 100755 --- a/install.sh +++ b/install.sh @@ -5,10 +5,10 @@ cd "$script_dir" [ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1 -curl -sfL 'https://dec05eba.com/files/twemoji.zip' -o /tmp/twemoji.zip +curl -sfL 'https://dec05eba.com/files/twemoji.tar.gz' -o /tmp/twemoji.tar.gz mkdir -p /usr/share/quickmedia/emoji -unzip -uqq /tmp/twemoji.zip -d /usr/share/quickmedia/emoji/ -rm -f /tmp/twemoji.zip +tar xf /tmp/twemoji.tar.gz --directory=/usr/share/quickmedia/emoji +rm -f /tmp/twemoji.tar.gz sibs build --release video_player sibs build --release -- cgit v1.2.3