diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | install.sh | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -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 @@ -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 |