repo/busybox/PACKAGE
2021-07-01 23:12:12 +02:00

15 lines
192 B
Bash

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