repo/busybox/PACKAGE

15 lines
194 B
Text
Raw 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"
}
pkg_uninstall() {
make uninstall
}