blob: 52f527aebfa580e2362c22ecc3f20eed26044979 (
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 \
--enable-static \
--without-p11-kit
make
make DESTDIR="$1" install
|