15 lines
213 B
Bash
15 lines
213 B
Bash
#!/bin/sh
|
|
pkg_ver="todo"
|
|
|
|
pkg_install() {
|
|
git clone git://busybox.net/busybox.git
|
|
cd busybox
|
|
make defconfig
|
|
make
|
|
make install CONFIG_PREFIX="$1/usr"
|
|
busybox --install
|
|
}
|
|
|
|
pkg_uninstall() {
|
|
make uninstall
|
|
}
|