summaryrefslogtreecommitdiff
path: root/xibuilds/file.xibuild
blob: 9141847bfddc525b3ab8109b4f9daf3ce49bc789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

DEPS=(glibc )

SOURCE=https://github.com/file/file


build () {
    # cheating
    wget http://ftp.astron.com/pub/file/file-5.40.tar.gz
    tar -zxf file-5.40.tar.gz 
    cd file-5.40

    ./configure --prefix=/usr 
    make
    make check
    make DESTDIR=$PKG_DEST install
}