diff options
author | Cem Keylan <cem@ckyln.com> | 2020-06-14 23:02:39 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-06-14 23:02:39 +0300 |
commit | 96c5ebccde57f8623b9c71a1158b6531e34e0714 (patch) | |
tree | f6502de0d92b53b6a08fc07d0e02d612829919e9 /extra/squashfs-tools-ng/build | |
parent | 02d1732e1b40334bb209830d14bd15bd7e6bacc6 (diff) | |
download | repository-96c5ebccde57f8623b9c71a1158b6531e34e0714.tar.gz |
squashfs-tools-ng: add new package at 1.0.0
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 |