summaryrefslogtreecommitdiff
path: root/repo/diffutils/diffutils.xibuild
blob: 2a3d0cda70852f7da986c166f978999f06352b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

MAKEDEPS="make sort"
DEPS="musl sh"

PKG_VER=0.8.6
SOURCE=http://landley.net/toybox/downloads/toybox-$PKG_VER.tar.gz
DESC="Utility programs for creating patch files"

build () {
    make defconfig
    make diff
    make cmp
}

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