blob: 2964f6c11bed7a2d2ec2486d7af4b3060dd04cb9 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | #!/bin/sh -e
./configure \
    --prefix=/usr \
    --disable-nls \
    --with-nettle-mini \
    --with-included-libtasn1 \
    --with-included-unistring \
    --disable-guile \
    --enable-static
make
make DESTDIR="$1" install
 |