You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
306 B
19 lines
306 B
#!/usr/bin/env bash |
|
|
|
sed -i 's/extras//' Makefile.in |
|
|
|
./configure --prefix=/usr |
|
|
|
make |
|
|
|
chown -R tester . |
|
su tester -c "PATH=$PATH make check" |
|
|
|
rm -f /usr/bin/gawk-5.3.2 |
|
make install |
|
|
|
ln -sv gawk.1 /usr/share/man/man1/awk.1 |
|
|
|
install -vDm644 doc/{awkforai.txt,*.{eps,pdf,jpg}} -t /usr/share/doc/gawk-5.3.2 |
|
|
|
|
|
|