mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 04:12:42 +00:00
syncing more termux repos
This commit is contained in:
parent
288c79e2e7
commit
66a0015853
30
termux.sh
30
termux.sh
@ -5,20 +5,30 @@ _here=`dirname $(realpath $0)`
|
|||||||
. ${_here}/helpers/apt-download
|
. ${_here}/helpers/apt-download
|
||||||
[ -z "${LOADED_APT_DOWNLOAD}" ] && (echo "failed to load apt-download"; exit 1)
|
[ -z "${LOADED_APT_DOWNLOAD}" ] && (echo "failed to load apt-download"; exit 1)
|
||||||
|
|
||||||
BASE_PATH="${TUNASYNC_WORKING_DIR}"
|
WORKING_DIR="${TUNASYNC_WORKING_DIR}"
|
||||||
|
|
||||||
base_url=${TUNASYNC_UPSTREAM_URL:-"https://termux.net"}
|
|
||||||
|
|
||||||
ARCHES=("aarch64" "all" "arm" "i686" "x86_64")
|
ARCHES=("aarch64" "all" "arm" "i686" "x86_64")
|
||||||
|
|
||||||
remote_filelist="${BASE_PATH}/filelist"
|
function sync_one_repo() {
|
||||||
[[ -f $remote_filelist ]] && rm $remote_filelist
|
base_url="$1"
|
||||||
|
BASE_PATH="$2"
|
||||||
|
[[ ! -d "$BASE_PATH" ]] && mkdir -p "$BASE_PATH"
|
||||||
|
remote_filelist="${BASE_PATH}/filelist"
|
||||||
|
[[ -f $remote_filelist ]] && rm $remote_filelist
|
||||||
|
|
||||||
for arch in ${ARCHES[@]}; do
|
for arch in ${ARCHES[@]}; do
|
||||||
echo "start syncing: ${arch}"
|
echo "start syncing: $base_url ${arch}"
|
||||||
apt-download-binary "${base_url}" "stable" "main" "${arch}" "${BASE_PATH}" ${remote_filelist} || true
|
apt-download-binary "${base_url}" "stable" "main" "${arch}" "${BASE_PATH}" ${remote_filelist} || true
|
||||||
done
|
done
|
||||||
|
|
||||||
apt-delete-old-debs ${BASE_PATH} $remote_filelist
|
apt-delete-old-debs ${BASE_PATH} $remote_filelist
|
||||||
|
}
|
||||||
|
|
||||||
|
sync_one_repo "https://dl.bintray.com/termux/termux-packages-24" "${WORKING_DIR}/termux-packages-24"
|
||||||
|
sync_one_repo "https://dl.bintray.com/grimler/termux-root-packages-24" "${WORKING_DIR}/termux-root-packages-24"
|
||||||
|
sync_one_repo "https://dl.bintray.com/grimler/science-packages-24" "${WORKING_DIR}/science-packages-24"
|
||||||
|
sync_one_repo "https://dl.bintray.com/grimler/game-packages-24" "${WORKING_DIR}/game-packages-24"
|
||||||
|
sync_one_repo "https://dl.bintray.com/xeffyr/x11-packages" "${WORKING_DIR}/x11-packages"
|
||||||
|
sync_one_repo "https://dl.bintray.com/xeffyr/unstable-packages" "${WORKING_DIR}/unstable-packages"
|
||||||
|
|
||||||
echo "finished"
|
echo "finished"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user