1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#!/bin/sh MAKEDEPS="make" DEPS="musl sh" PKG_VER=0.8.6 SOURCE=http://landley.net/toybox/downloads/toybox-$PKG_VER.tar.gz DESC="fmt from toybox" build () { ./configure make fmt } package () { install -Dm755 fmt $PKG_DEST/usr/bin/ }