blob: 0e4da82fcedb2c8b7d84187cf51fe9fe4ff43b46 (
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
}
 |