-
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.
feat: Add support for Android (Termux)
- Loading branch information
1 parent
69f1cf7
commit 6e0841c
Showing
3 changed files
with
30 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{{- if (eq .chezmoi.os "android") -}} | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
# TermuxAptfile hash: {{ include "packages/TermuxAptfile" | sha256sum }} | ||
|
||
# Install packages | ||
apt-get install -y apt-transport-https | ||
apt-get update | ||
cat {{ .chezmoi.sourceDir }}/packages/TermuxAptfile | xargs apt-get install -y | ||
{{- end }} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
bat | ||
colordiff | ||
curl | ||
diffutils | ||
dnsutils | ||
fd-find | ||
gawk | ||
grep | ||
gzip | ||
inetutils | ||
nano | ||
net-tools | ||
nmap | ||
openssh | ||
sed | ||
tar | ||
unbound | ||
unzip |