blob: 348c3df68940635bedca514ed08ff1709d9a0a8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set -e
sed -i 's/extras//' Makefile.in
./configure --prefix=/usr &&
make &&
make -j1 install &&
mkdir -v /usr/share/doc/gawk-"${VERSION}" &&
cp -v doc/{awkforai.txt,*.{eps,pdf,jpg}} /usr/share/doc/gawk-"${VERSION}"
|