]> wimlib.net Git - wimlib/blob - tools/make-releases
wimcapture.1: 7-Zip 15.12 supports LZMS decompression
[wimlib] / tools / make-releases
1 #!/bin/bash
2
3 set -e
4
5 MAKE="make -j$(grep -c processor /proc/cpuinfo)"
6
7 ./configure && $MAKE distcheck
8
9 # Recompress with 7-Zip
10 gzfile=$(ls wimlib-*.tar.gz | tail -1)
11 tarfile=${gzfile%.gz}
12 gunzip $gzfile
13 7z -mx9 a $gzfile $tarfile
14 rm -f $tarfile
15
16 for arch in i686 x86_64; do
17         ./tools/make-windows-release $arch
18 done