diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..74ae513 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +squashfs-root +*.sh +*.AppImage diff --git a/apps/mkchrome b/apps/mkchrome new file mode 100755 index 0000000..d6240a8 --- /dev/null +++ b/apps/mkchrome @@ -0,0 +1,13 @@ +#!/bin/bash +PATH=$(dirname "$(readlink -f "${0}")")/..:$PATH +DIR=/tmp/dwarf-portable-executable +mkdir -p $DIR +LINK=https://download-chromium.appspot.com/dl/Linux_x64 +curl -L "$LINK" | bsdtar xf - -C$DIR + +chmod +x $DIR/chrome-linux/chrome* +mv $DIR/chrome-linux/chrome $DIR/chrome-linux/AppRun + +appdwarf $DIR/chrome-linux +mv $DIR/chrome-linux.sh chromium +rm -rf $DIR/chrome-linux