diff options
Diffstat (limited to 'extra/squashfs-tools-ng/build')
-rwxr-xr-x | extra/squashfs-tools-ng/build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extra/squashfs-tools-ng/build b/extra/squashfs-tools-ng/build new file mode 100755 index 00000000..afebf37f --- /dev/null +++ b/extra/squashfs-tools-ng/build @@ -0,0 +1,10 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --sbindir=/usr/bin \ + --without-xz \ + --disable-shared + +make CCLD="${CC:-cc} --static" +make DESTDIR="$1" install |