live-bootstrap/sysa/grep-2.4/grep-2.4.kaem

24 lines
240 B
Bash

#!/bin/sh
set -ex
cd build
# Extract
gunzip ../src/${pkg}.tar.gz
tar xf ../src/${pkg}.tar
cd ${pkg}
cp ../../mk/main.mk Makefile
# Build
make
# Install
cp grep /after/bin/grep
chmod 755 /after/bin/grep
# Test
grep --version
cd ../..