#!/bin/bash

DEPS=(readline glibc ncurses)

SOURCE=https://git.savannah.gnu.org/git/bash.git

build () {
    ./configure --without-bash-malloc --prefix=/usr
    make
    make DESTDIR=$PKG_DEST install
}