7a48c4
#!/bin/sh
7a48c4
7a48c4
rm -rf ./process-tarball-dir
7a48c4
mkdir ./process-tarball-dir
7a48c4
tar -xJf $1 --directory process-tarball-dir
7a48c4
7a48c4
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0030-isvalid.html
7a48c4
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0008-isvalid.html
7a48c4
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfalite/0030-isvalid.html
7a48c4
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/css/css-ui/support/cursors/woolly-64.svg
7a48c4
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/css/css-ui/support/cursors/woolly.svg
7a48c4
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0230-novalid.html
7a48c4
rm -vf ./process-tarball-dir/*/testing/web-platform/tests/conformance-checkers/html-rdfa/0231-isvalid.html
7a48c4
rm -vf ./process-tarball-dir/*/layout/inspector/tests/chrome/test_fontVariationsAPI.css
7a48c4
7a48c4
processed_tarball=${1/source/processed-source}
7a48c4
7a48c4
cd ./process-tarball-dir
7a48c4
tar -cf - ./* | xz -9 -T 0 -f > $processed_tarball
7a48c4
mv $processed_tarball ..
7a48c4
cd ..
7a48c4
7a48c4
rm -rf ./process-tarball-dir