#!/bin/sh

MAKEDEPS="make sort"
DEPS="musl acl attr"

PKG_VER=0.8.6
SOURCE=http://landley.net/toybox/downloads/toybox-$PKG_VER.tar.gz
DESC="stream editor from toybox"

build () {
    ./configure 
    make sed
}

package () {
    install -Dm755 sed $PKG_DEST/usr/bin/
}