summaryrefslogtreecommitdiff
path: root/repo/core/bash.xibuild
blob: ab6e11e7e61d3aa89a3b9a997f5978a92f71fc84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

DEPS=(readline glibc ncurses)

SOURCE=https://git.savannah.gnu.org/git/bash.git
DESC="The free Bourne Again Shell"

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