morpheus

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

commit e7a61976d558e386ecc040cd351eebe233832ede
parent f672e5e4161c1963e45b70a5dacc95b9b6ec3b64
Author: sin <sin@2f30.org>
Date:   Tue, 18 Feb 2014 10:47:18 +0000

Add uuterm

Diffstat:
Apkgs/uuterm | 21+++++++++++++++++++++
Mstage0 | 3++-
2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/pkgs/uuterm b/pkgs/uuterm @@ -0,0 +1,21 @@ +url=$mirror/uuterm.tar.gz + +fetch() { + wget -c $url -O src/uuterm.tar.gz +} + +unpack() { + cd src + [ -d uuterm ] || tar xzf uuterm.tar.gz + cd - +} + +build() { + cd src/uuterm + make CC=x86_64-linux-musl-gcc LDFLAGS_X11="-L$libcroot/lib -static" uuterm-x11 + cd - +} + +install() { + cp src/uuterm/uuterm-x11 $root/bin +} diff --git a/stage0 b/stage0 @@ -26,6 +26,7 @@ packages="crossmusl syslinux tinyxserver tmux - ubase" + ubase + uuterm" ./pkgbuild $packages