#!/bin/bash

DEPS=(glibc bash)

SOURCE=http://ftp.gnu.org/gnu/which/which-2.21.tar.gz
DESC="A utility to show the full path of commands"

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