From fda9153bf392e107cf453b9b73600aa8feeec81b Mon Sep 17 00:00:00 2001 From: Liam Waldron Date: Mon, 16 Oct 2023 12:34:19 -0400 Subject: [PATCH] fix busybox --- system/busybox | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/system/busybox b/system/busybox index a8ba4b5..b22a17c 100644 --- a/system/busybox +++ b/system/busybox @@ -19,14 +19,13 @@ DEPENDS=("") CONFLICTS=("") # Source information -PACKAGE_SRC="https://busybox.net/downloads/busybox-1.36.0.tar.bz2" -SOURCES=("busybox-1.36.0.tar.bz2" "busybox-1.36.0") +PACKAGE_SRC="https://git.busybox.net/busybox" +SOURCES=("busybox-1.36.0") # Installation getsource() { wget $PACKAGE_SRC - tar xf ${SOURCES[0]} - cd ${SOURCES[1]} + cd ${SOURCES[0]} } buildpkg() {