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

14 lines
190 B
Bash

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