summaryrefslogtreecommitdiff
path: root/xibuilds/bash.xibuild
blob: efa9c198be38101970ff26d89b536ad2d579b398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

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"    
}