morpheus

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

commit 2961f5370fdcefd1ff558fa53463ec3922f460b9
parent fe75469272ac84a2087aa37bf74abe0f78dc6ec6
Author: sin <sin@2f30.org>
Date:   Mon,  3 Feb 2014 12:16:05 +0000

Remove sed and use busybox sed

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

diff --git a/pkgs/busybox b/pkgs/busybox @@ -42,6 +42,7 @@ install() { ln -sf busybox pkill ln -sf busybox poweroff ln -sf busybox reboot + ln -sf busybox sed ln -sf busybox sysctl ln -sf busybox tac ln -sf busybox telnet diff --git a/pkgs/sed b/pkgs/sed @@ -1,26 +0,0 @@ -url=$mirror/sed-4.2.tar.gz - -fetch() { - wget -c $url -O src/sed-4.2.tar.gz -} - -unpack() { - pushd src - [ -d sed-4.2 ] || tar xzf sed-4.2.tar.gz - popd -} - -build() { - pushd src/sed-4.2 - CC="x86_64-linux-musl-gcc -static" ./configure --prefix=$root --disable-nls \ - --libdir=$libcroot/lib \ - --libexecdir=$libcroot/libexec || return 1 - make -j$nprocs || return 1 - popd -} - -install() { - pushd src/sed-4.2 - make install || return 1 - popd -}