morpheus

suckless linux distro
git clone git://git.2f30.org/morpheus
Log | Files | Refs | Submodules | README | LICENSE

commit 8b6d163235ba2420d75a7f037a5907b4e6fe6d91
parent a7b4924f22ac983692a264cee894a6e0ed270503
Author: Daniel Bainton <dpb@driftaway.org>
Date:   Sat,  1 Mar 2014 20:35:38 +0000

Add 9base package, which will install mk, awk and sed

Diffstat:
Apkgs/9base | 17+++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)

diff --git a/pkgs/9base b/pkgs/9base @@ -0,0 +1,17 @@ +git="git://git.suckless.org/9base" + +build: crossmusl + targets="mk sed awk" + cd src/9base + make clean + for t in lib9 yacc; do + cd $t + make CC=$CC LDFLAGS="$LDFLAGS" + cd .. + done + for t in $targets; do + cd $t + make CC=$CC LDFLAGS="$LDFLAGS" + cp $t $root/bin/ + cd .. + done