commit 5afea22
chld
·
2026-08-29 19:02:50 +0000 UTC
parent c25973a
busybox: fix build()
3 files changed,
+21,
-0
+2,
-0
1@@ -0,0 +1,2 @@
2+.gmake
3+.linux-headers
+6,
-0
1@@ -0,0 +1,6 @@
2+name: busybox
3+description: shitty coreutils with a shittier license.
4+license: GPLv2
5+upstream: https://busybox.net/downloads/busybox-${VERSION}.tar.bz2
6+version: 1.36.1
7+maintainer: -
+13,
-0
1@@ -0,0 +1,13 @@
2+#!/bin/sh -ue
3+NAME=busybox
4+VERSION=1.36.1
5+RELEASE=1
6+SOURCE="https://busybox.net/downloads/busybox-${VERSION}.tar.bz2"
7+
8+build(){
9+ gmake PREFIX="$PREFIX" DESTDIR="$PKG" defconfig
10+ gmake PREFIX="$PREFIX" DESTDIR="$PKG"
11+ gmake PREFIX="$PREFIX" DESTDIR="$PKG" install
12+}
13+
14+. ${0%/*}/../../libsh/libdmake.sh