#!/bin/bash

MAKEDEPS=(make )
DEPS=(sh perl)

SOURCE=https://github.com/dex4er/fakechroot
DESC="Gives a fake chroot environment"

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