mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-10 00:46:30 +00:00
20 lines
452 B
Bash
Executable file
20 lines
452 B
Bash
Executable file
#!/bin/bash
|
|
PATH=$(dirname $(readlink -f "${0}"))/..:$PATH
|
|
DIR=/tmp/dwarf-portable-executable
|
|
mkdir -p $DIR
|
|
LINK=$(curl -sL https://golang.org/dl | grep -om1 dl/go.\*linux-amd64.tar.gz)
|
|
curl -L https://golang.org/$LINK | tar xz -C$DIR
|
|
|
|
cat > $DIR/go/AppRun << 'EOF'
|
|
#!/bin/sh
|
|
HERE=$(dirname $(readlink -f "${0}"))
|
|
export LD_LIBRARY_PATH="${HERE}":$PATH
|
|
"${HERE}"/bin/go $@
|
|
EOF
|
|
|
|
chmod +x $DIR/go/AppRun
|
|
|
|
appdwarf $DIR/go
|
|
mv $DIR/go.sh go
|
|
rm -rf $DIR/go
|