summaryrefslogtreecommitdiff
path: root/repo/util/fmt/fmt.xibuild
blob: 5c17a6064e2786ffbc8539c507138b01a5784369 (plain)
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/
}