live-bootstrap/sysa/m4-1.4/m4-1.4.kaem

27 lines
293 B
Plaintext
Raw Normal View History

2021-01-20 01:43:40 +00:00
#!/bin/sh
set -ex
2021-01-20 19:25:44 +00:00
mkdir build
2021-01-20 01:43:40 +00:00
cd build
# Extract
gunzip ../src/${pkg}.tar.gz
tar xf ../src/${pkg}.tar
cd ${pkg}
cp ../../mk/main.mk Makefile
# Patch and prepare
patch -Np0 -i ../../patches/signal-include.patch
# Build
make
# Install
2021-01-20 19:25:44 +00:00
install m4 /after/bin/
2021-01-20 01:43:40 +00:00
# Test
m4 --version
cd ../..