openssl: bump to 3.0.2 + libretls 3.5.0
[kiss-trunc88.git] / snownews / build
blob1b94442a325d31775641fd9445a53218eb0d2205
1 #!/bin/sh -e
3 ./configure \
4 --prefix=/usr \
5 --without-nls
7 # remove gettext make dep by not building other language support
8 sed -i '/include po/d' Makefile
10 make
11 make DESTDIR="$1" install
13 # Remove manpages in extra languages
14 for lang in ru nl it fr de; do
15 rm -fr "$1/usr/share/man/$lang";
16 done