-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apps: refactor appmk infrastructure into sourcing appdwarf
- Loading branch information
Showing
22 changed files
with
160 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")"/appmk | ||
part0 | ||
# shellcheck source=../appdwarf | ||
SOURCE=1 . "$(which appdwarf)" | ||
base=https://download.calibre-ebook.com | ||
LINK="$(curl "$base" | tail -n 1 | cut -d\" -f2)" | ||
LINK="$(curl "$base/$LINK" | tail -n 1 | cut -d\" -f4 | tr -d /)" | ||
LINK="$base/$LINK/calibre-$LINK-$(uname -m).txz" | ||
unxz | ||
appa | ||
part9 | ||
appmk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")"/appmk | ||
part0 | ||
# shellcheck source=../appdwarf | ||
SOURCE=1 . "$(which appdwarf)" | ||
LINK=$(curl https://go.dev/dl/ | grep -m1 linux | cut -d\" -f4) | ||
curl -L https://go.dev/"$LINK" | tar xz -C"$DIR"/.. | ||
appb | ||
sed -i '5i export GOPROXY=direct' "$DIR"/AppRun | ||
part9 | ||
appmk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")"/appmk | ||
part0 | ||
# shellcheck source=../appdwarf | ||
SOURCE=1 . "$(which appdwarf)" | ||
LINK=$(curl -L mp3tag.de/dodownload64.html | awk -F'[="]' /URL/'{print $7}') | ||
aria2c "$LINK" -d "$DIR" -o mp3tag | ||
7z x -y -o"$DIR" "$DIR"/mp3tag | ||
un7z mp3tag | ||
mv "$DIR"/Mp3tag.exe "$DIR"/mp3tag | ||
appa | ||
sed -i '5s/ / wine /' "$DIR"/AppRun | ||
part9 | ||
appmk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")"/appmk | ||
part0 | ||
# shellcheck source=../appdwarf | ||
SOURCE=1 . "$(which appdwarf)" | ||
LINK=$(curl https://api.github.com/repos/clangen/musikcube/releases | grep -om1 'http.*_64.*bz2') | ||
unbz | ||
mv "$DIR"/musikcube*/* "$DIR" | ||
appa | ||
part9 | ||
appmk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")"/appmk | ||
part0 | ||
# shellcheck source=../appdwarf | ||
SOURCE=1 . "$(which appdwarf)" | ||
LINK=http://musl.cc/x86_64-linux-musl-native.tgz | ||
ungz | ||
mv "$DIR"/x86_64-linux-musl-native/* "$DIR" | ||
ln -s gcc "$DIR"/bin/cc | ||
appa | ||
sed -i '5d;4a exec "$@"' "$DIR"/AppRun | ||
part9 | ||
appmk |
Oops, something went wrong.