14 lines
232 B
Bash
14 lines
232 B
Bash
#!/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
|