repo/busybox/PACKAGE

16 lines
192 B
Text
Raw Normal View History

#!/bin/sh
pkg_ver="todo"
pkg_install() {
git clone git://busybox.net/busybox.git
cd busybox
make defconfig
make
2021-07-02 00:12:12 +03:00
echo $1
make install DESTDIR="$1"
}
pkg_uninstall() {
make uninstall
}