diff options
Diffstat (limited to 'community/coreutils/build')
| -rwxr-xr-x | community/coreutils/build | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/community/coreutils/build b/community/coreutils/build new file mode 100755 index 00000000..c58225c9 --- /dev/null +++ b/community/coreutils/build @@ -0,0 +1,16 @@ +#!/bin/sh -e + +patch -p1 < busybox-style.patch + +export LDFLAGS="$LDFLAGS -static" + +./configure \ +    --prefix=/usr \ +    --enable-single-binary=symlinks \ +    --with-packager="Carbs Linux" \ +    --without-libgmp \ +    --disable-libcap \ +    --disable-nls + +make +make DESTDIR="$1" install | 
