summaryrefslogtreecommitdiff
path: root/psibuilds/bash.psibuild
blob: 9a5d1afe1cd17e69dfabfec4848847cc6bf5bec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

DEPS=(readline libreadline.so=8-64 glibc ncurses)

fetch () {
    git clone https://git.savannah.gnu.org/git/bash.git
}

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

package () {
    echo "packaged"    
}