commit 21afab2eb0d02eb28040df676b6e0d174486cff8 parent 44d4ac054dc40aa458b5760c837689f87532d27c Author: sin <sin@2f30.org> Date: Tue, 17 Sep 2013 13:44:54 +0100 Add make Diffstat:
A | pkgs/make | | | 24 | ++++++++++++++++++++++++ |
1 file changed, 24 insertions(+), 0 deletions(-)
diff --git a/pkgs/make b/pkgs/make @@ -0,0 +1,24 @@ +url=$mirror/make-3.82.tar.bz2 + +fetch() { + wget -c $url -O src/make-3.82.tar.bz2 +} + +unpack() { + pushd src + [ -d make-3.82 ] || tar xjf make-3.82.tar.bz2 + popd +} + +build() { + pushd src/make-3.82 + CC="musl-gcc -static" ./configure --prefix=$root --disable-nls + make CC="musl-gcc -static" -j$nprocs + popd +} + +install() { + pushd src/make-3.82 + make install + popd +}