repo/busybox/PACKAGE

16 lines
213 B
Text
Raw Permalink Normal View History

#!/bin/sh
pkg_ver="todo"
pkg_install() {
git clone git://busybox.net/busybox.git
cd busybox
make defconfig
2021-07-02 01:25:01 +03:00
make
make install CONFIG_PREFIX="$1/usr"
2021-07-02 03:59:14 +03:00
busybox --install
}
pkg_uninstall() {
make uninstall
}