blob: d069befd0445318e7ec04b30e2cbbea3feb88c34 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | #!/bin/sh -e
./configure \
    --prefix=/usr \
    --without-nettle \
    --without-openssl \
    --without-xml2 \
    --without-expat
# Link binaries statically
make bsdtar_LDFLAGS=-all-static \
     bsdcat_LDFLAGS=-all-static \
     bsdcpio_LDFLAGS=-all-static
make DESTDIR="$1" install
ln -s bsdcat  "$1/usr/bin/cat"
ln -s bsdcpio "$1/usr/bin/cpio"
ln -s bsdtar  "$1/usr/bin/tar"
 |