morpheus

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

commit eb3ee68f290862cd293a318fd1f34d2a3d525c43
parent e7a6558f26c0652c14fd153c85e3b7e11631ecba
Author: sin <sin@2f30.org>
Date:   Mon, 16 Jun 2014 09:37:24 +0100

install-morpheus will clone and build pkgtools

Diffstat:
Mmisc/install-morpheus | 13+++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/misc/install-morpheus b/misc/install-morpheus @@ -1,13 +1,10 @@ #!/bin/sh -# -# you need pkgtools from http://git.2f30.org/pkgtools/ root="root" pkgdir="pkgs" # list of important packages -pkgs=" -curl#7.36.0.pkg.tgz +pkgs="curl#7.36.0.pkg.tgz e2fsprogs#1.42.9.pkg.tgz elinks#0.12pre6.pkg.tgz extlinux#6.02.pkg.tgz @@ -29,6 +26,14 @@ tmux#1.9a.pkg.tgz ubase.pkg.tgz vim#7.4.pkg.tgz" +# grab and build pkgtools +git clone git://git.2f30.org/pkgtools +cd pkgtools +make || ( echo "missing libarchive?" 1>&2 && exit 1 ) +cd - +PATH=$(pwd)/pkgtools:$PATH +export PATH + # prepare root mkdir -p "$root/var/pkg" mkdir -p "$pkgdir"