Skip to content

πŸ“¦ Statically Linked Binaries for Android (arm64-v8a), Linux (aarch64_arm64 | amd_x86-64) all in one place :: https://bin.ajam.dev

Notifications You must be signed in to change notification settings

pato0114/Toolpacks

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation


Statically Compiled Binaries

Contents


  • πŸ“¦ Status πŸ”–

🧰 Architecture 🧰 πŸ“¦ Total Binaries πŸ“¦ πŸ‡¨πŸ‡­ WorkFlows πŸ‡¨πŸ‡­
Android arm64-v8a 33 πŸ“± Android Package πŸ“¦πŸ—„οΈ
Linux amd // x86_64 837 πŸ›οΈ Build πŸ“¦ (toolpack_x86_64_Linux) Binaries πŸ“¦πŸ—„οΈ
Linux aarch64 // arm64 789 πŸ›οΈ Build πŸ“¦ (toolpack_aarch64_Linux) Binaries πŸ“¦πŸ—„οΈ
Windows x64 // AMD64 162 πŸ›οΈ Build πŸ“¦ (toolpack_x64_Windows) Binaries πŸ“¦πŸ—„οΈ

πŸ”½ Download πŸ”½

  • GUI

Note: The dir listing may not list everything. Make sure to check METADATA.json image image


  • CLI

ℹ️ Recommended ℹ️ : Use Hysp if you want to skip everything below, since hysp already uses this repo as it's source.

  1. Install eget
#--------------------------------------------------------------------------------------------#
❯ amd || x86_64 (Linux) 

!# As $USER
mkdir -p "$HOME/bin" ; export PATH="$HOME/bin:$PATH"
curl -qfsSL "https://bin.ajam.dev/x86_64_Linux/eget" -o "$HOME/bin/eget" && chmod +xwr "$HOME/bin/eget"
wget -q "https://bin.ajam.dev/x86_64_Linux/eget" -O "$HOME/bin/eget" && chmod +xwr "$HOME/bin/eget"

!# As ROOT
sudo curl -qfsSL "https://bin.ajam.dev/x86_64_Linux/eget" -o "/usr/local/bin/eget" && sudo chmod +xwr "/usr/local/bin/eget"
sudo wget -q "https://bin.ajam.dev/x86_64_Linux/eget" -O "/usr/local/bin/eget" && sudo chmod +xwr "/usr/local/bin/eget"
#--------------------------------------------------------------------------------------------#

#--------------------------------------------------------------------------------------------#
❯ arm64 || aarch64 (Linux) 

!# As $USER
mkdir -p "$HOME/bin" ; export PATH="$HOME/bin:$PATH"
curl -qfsSL "https://bin.ajam.dev/aarch64_arm64_Linux/eget" -o "$HOME/bin/eget" && chmod +xwr "$HOME/bin/eget"
wget -q "https://bin.ajam.dev/aarch64_arm64_Linux/eget" -O "$HOME/bin/eget" && chmod +xwr "$HOME/bin/eget"

!# As ROOT
sudo curl -qfsSL "https://bin.ajam.dev/aarch64_arm64_Linux/eget" -o "/usr/local/bin/eget" && sudo chmod +xwr "/usr/local/bin/eget"
sudo wget -q "https://bin.ajam.dev/aarch64_arm64_Linux/eget" -O "/usr/local/bin/eget" && sudo chmod +xwr "/usr/local/bin/eget"
#--------------------------------------------------------------------------------------------#

#--------------------------------------------------------------------------------------------#
❯ arm64-v8a (Android) 

!# As $USER (TERMUX)
# $PREFIX:/data/data/com.termux/files/usr
curl -qfSL "https://bin.ajam.dev/arm64_v8a_Android/eget" -o "$PREFIX/bin/eget" && chmod +xwr "$PREFIX/bin/eget"
wget -q "https://bin.ajam.dev/arm64_v8a_Android/eget" -O "$PREFIX/bin/eget" && chmod +xwr "$PREFIX/bin/eget"
!# Root requires remounting /system/bin as RWR (NOT RECOMMENDED)
#--------------------------------------------------------------------------------------------#
  1. Install 7z
#--------------------------------------------------------------------------------------------#
❯ amd || x86_64 (Linux) 

!# As $USER
eget "https://bin.ajam.dev/x86_64_Linux/7z" --to "$HOME/bin/7z"

!# As ROOT
sudo eget "https://bin.ajam.dev/x86_64_Linux/7z" --to "/usr/local/bin/7z"
#--------------------------------------------------------------------------------------------#

#--------------------------------------------------------------------------------------------#
❯ arm64 || aarch64 (Linux) 

!# As $USER
eget "https://bin.ajam.dev/aarch64_arm64_Linux/7z" --to "$HOME/bin/7z"

!# As ROOT
sudo eget "https://bin.ajam.dev/aarch64_arm64_Linux/7z" --to "/usr/local/bin/7z"

#--------------------------------------------------------------------------------------------#
❯ Single/Individual Binaries

!# $USER
eget "https://bin.ajam.dev/x86_64_Linux/$BINARY_NAME" --to "$HOME/bin"

!# ROOT
sudo eget "https://bin.ajam.dev/x86_64_Linux/$BINARY_NAME" --to "/usr/local/bin"

#--------------------------------------------------------------------------------------------#
❯ Everything All at once
!# $USER
!#Download .7z archive
 wget --quiet --show-progress --progress="dot:giga" "https://bin.ajam.dev/x86_64_Linux/_toolpack_x86_64.7z" -O "./toolpack_x86_64.7z"

!# $USER
 mkdir -p "$HOME/bin" ; 7z e "./toolpack_x86_64.7z" -o"$HOME/bin" -y ; rm -rf "$HOME/bin/toolpack_x86_64" 2>/dev/null ; rm -rf "./toolpack_x86_64.7z" ; chmod +xwr $HOME/bin/*

!# ROOT [NOT-RECOMMENDED]
 sudo 7z e "./toolpack_x86_64.7z" -o"/usr/local/bin" -y ; sudo rm -rf "/usr/local/bin/toolpack_x86_64" 2>/dev/null ; rm -rf "./toolpack_x86_64.7z" ; sudo chmod +xwr /usr/local/bin/* 2>/dev/null
#--------------------------------------------------------------------------------------------#

#--------------------------------------------------------------------------------------------#
❯ Single/Individual Binaries

!# $USER
eget "https://bin.ajam.dev/aarch64_arm64_Linux/$BINARY_NAME" --to "$HOME/bin"

!# ROOT
sudo eget "https://bin.ajam.dev/aarch64_arm64_Linux/$BINARY_NAME" --to "/usr/local/bin"

#--------------------------------------------------------------------------------------------#
❯ Everything All at once
!# $USER
!#Download .7z archive
 wget --quiet --show-progress --progress="dot:giga" "https://bin.ajam.dev/aarch64_arm64_Linux/_toolpack_aarch64_arm64.7z" -O "./toolpack_aarch64_arm64.7z"

!# $USER
 mkdir -p "$HOME/bin" ; 7z e "./toolpack_aarch64_arm64.7z" -o"$HOME/bin" -y ; rm -rf "$HOME/bin/toolpack_aarch64_arm64" 2>/dev/null ; rm -rf "./toolpack_aarch64_arm64.7z" ; chmod +xwr $HOME/bin/*

!# ROOT [NOT-RECOMMENDED]
 sudo 7z e "./toolpack_aarch64_arm64.7z" -o"/usr/local/bin" -y ; sudo rm -rf "/usr/local/bin/toolpack_aarch64_arm64" 2>/dev/null ; rm -rf "./toolpack_aarch64_arm64.7z" ; sudo chmod +xwr /usr/local/bin/* 2>/dev/null
#--------------------------------------------------------------------------------------------#

#--------------------------------------------------------------------------------------------#
❯ Single/Individual Binaries

eget "https://bin.ajam.dev/arm64_v8a_Android/$BINARY_NAME" --to "$PREFIX/bin/$BINARY_NAME"

#--------------------------------------------------------------------------------------------#
❯ Everything All at once

!# Create tmp dir
pushd "$(mktemp -d)"
!# Download all bins
for url in $(curl -qfsSL "https://bin.ajam.dev/arm64_v8a_Android/METADATA.json" | jq -r '.[].Source' | grep -v "BLAKE3SUM\|FILE\.txt\|METADATA.json\|README\.md\|SHA256SUM"); do echo -e "\n[+] $url\n" && curl -qfLJO "$url"; done

!# Move all to "$PREFIX/bin"
# $PREFIX=/data/data/com.termux/files/usr
find . -maxdepth 1 -type f ! -name '*.md' -exec mv {} "$PREFIX/bin/" \; 2>/dev/null
#chmod
chmod +xwr $PREFIX/bin/*
#list
ls "$PREFIX/bin" | column -t ; popd
#--------------------------------------------------------------------------------------------#

  • 🚧 Security βš™οΈ

It is never a good idea to install random binaries from random sources.

  • Check these HackerNews Discussions

The amount of work and the near impossibility to ensure that every source I use provide reproducibility is infeasibly impractical. Even if it were practical, not every pkg/tool provide source code, so this is moot anyway.

  • Reasons to Trust this Repo
  • All the Build Scripts & workflows are completely open-source. You are free to audit & scrutinize everything.
# Everything is automated via Github Actions & Build Scripts
WorkFlows --> https://github.com/Azathothas/Toolpacks/tree/main/.github/workflows
Build Scripts --> https://github.com/Azathothas/Toolpacks/tree/main/.github/scripts
  • Both SHA256SUM & BLAKE3SUM are automatically generated right after build script finishes.
  • Reasons NOT to trust this Repo
  • Repos that already publish pre-compiled static binaries, nothing is changed. You can compare checksums.
  • However, for repos that don't publish releases or at least not statically linked binaries, there is no way for you to end up with the same binary even when you use the same build scripts. In this case, checksums are meaningless as each build will produce different checksums. Your only option is to trust me bro or:
env:
 GITHUB_TOKEN: ${{ secrets.TOOLPACKS }}

About

πŸ“¦ Statically Linked Binaries for Android (arm64-v8a), Linux (aarch64_arm64 | amd_x86-64) all in one place :: https://bin.ajam.dev

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published