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