morpheus

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

commit 6c6c6b34408d87c2be745a298eeb5abc3427be6c
parent 77734623e8198f1a0ebd242fd09e7778def08cbb
Author: sin <sin@2f30.org>
Date:   Wed, 25 Sep 2013 16:49:31 +0100

Bring back busybox wget

Diffstat:
Mpkgs/busybox | 1+
Dpkgs/wget | 26--------------------------
2 files changed, 1 insertion(+), 26 deletions(-)

diff --git a/pkgs/busybox b/pkgs/busybox @@ -48,6 +48,7 @@ install() { ln -s busybox tftpd ln -s busybox top ln -s busybox vi + ln -s busybox wget popd popd } diff --git a/pkgs/wget b/pkgs/wget @@ -1,26 +0,0 @@ -url=$mirror/wget-1.14.tar.gz - -fetch() { - wget -c $url -O src/wget-1.14.tar.gz -} - -unpack() { - pushd src - [ -d wget-1.14 ] || tar xzf wget-1.14.tar.gz - popd -} - -build() { - pushd src/wget-1.14 - CC="x86_64-linux-musl-gcc -static" ./configure --prefix=$root --without-ssl \ - --libdir=$root/devel/x86_64-linux-musl/lib \ - --libexecdir=$root/devel/x86_64-linux-musl/libexec || return 1 - make -j$nprocs || return 1 - popd -} - -install() { - pushd src/wget-1.14 - make install || return 1 - popd -}