Restructure

This commit is contained in:
fosslinux 2021-01-20 12:43:40 +11:00
parent e5cbaa9e04
commit 5a369dc783
77 changed files with 419 additions and 295 deletions

26
sysa/m4-1.4/m4-1.4.kaem Executable file
View file

@ -0,0 +1,26 @@
#!/bin/sh
set -ex
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
cp m4 /after/bin/m4
chmod 755 /after/bin/m4
# Test
m4 --version
cd ../..