blob: c58225c93f6f22c22b49459ceb8d8079bd1fb3c2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | #!/bin/sh -e
patch -p1 < busybox-style.patch
export LDFLAGS="$LDFLAGS -static"
./configure \
    --prefix=/usr \
    --enable-single-binary=symlinks \
    --with-packager="Carbs Linux" \
    --without-libgmp \
    --disable-libcap \
    --disable-nls
make
make DESTDIR="$1" install
 |