aboutsummaryrefslogtreecommitdiff
path: root/extra/yash/build
blob: 68d477594e174a0df07b9a2a497b1d0b8ef4f6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

./configure \
    --prefix=/usr \
    --enable-help \
    --enable-history \
    --disable-nls \
    --enable-printf \
    --enable-socket \
    --enable-lineedit

make
make DESTDIR="$1" install

ln -sf yash "$1/usr/bin/sh"