From d4542c336a6cbfb43497055f19a85e7713f2eed7 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Sun, 25 Jun 2023 16:38:32 +0200 Subject: ports: reimplement the ports system from scratch side stuff: * removed sltar since it wasn't working anyways * made signal() no longer panic, as that broke certain ports (oops) * doom now ships with the FreeDOOM WADs * /usr/ was aliased to /init/usr/, more directories were added to /bin/ to improve compat with ports --- ports/dash/port | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 ports/dash/port (limited to 'ports/dash/port') diff --git a/ports/dash/port b/ports/dash/port new file mode 100755 index 0000000..6a17372 --- /dev/null +++ b/ports/dash/port @@ -0,0 +1,18 @@ +#!/bin/sh +. ports/pre + +pkg=dash +tarball=dash-0.5.12.tar.gz +tarball_dir=dash-0.5.12 +url=http://gondor.apana.org.au/~herbert/dash/files/${tarball} + +relink() { + rm $tarball_dir/dash +} + +configure() { + test -e $tarball_dir/Makefile && return + (cd $tarball_dir && ./configure --host=x86_64-camellia) +} + +. ports/post -- cgit v1.2.3