mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-02-09 04:26:44 +00:00
Add gitignore and chromium
This commit is contained in:
parent
2d0cdfe50a
commit
c3a893e920
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
squashfs-root
|
||||
*.sh
|
||||
*.AppImage
|
13
apps/mkchrome
Executable file
13
apps/mkchrome
Executable file
|
@ -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
|
Loading…
Reference in a new issue