mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-10 21:35:24 +01:00
23 lines
240 B
Bash
23 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 ../..
|