#!/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
}