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