summaryrefslogtreecommitdiff
path: root/repo/util/file.xibuild
blob: 150810b8f5c4c7f118e3281b307c7ef2a126cdbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

DEPS=(glibc zlib xz bzip2)

SOURCE=http://ftp.astron.com/pub/file/file-5.40.tar.gz
DESC="A utility for determining the type of a given file or files"

build () {
    ./configure --prefix=/usr 
    make
    make check
    make DESTDIR=$PKG_DEST install
}