scribus/make-free-archive.sh

55 lines
1.1 KiB
Bash
Executable File

#! /bin/sh
if [ -z "$1" ]; then
echo "version required"
exit 1
fi
version=$1
nv=scribus-${version}
archive=${nv}.tar.xz
freearchive=${nv}-free.tar.xz
[ -f ${archive} ] || curl -OL http://downloads.sourceforge.net/scribus/scribus-${version}.tar.xz
echo "Extracting sources ..."
rm -rf ${nv}
tar -xJf $archive
pushd ${nv}
# remove docs
rm -r scribus/doc
# remove non-free profile
rm scribus/profiles/{sRGB.icm,srgb.license}
# remove non-free content from swatches
rm resources/swatches/*.eps
rm resources/swatches/dtp-studio-free-palettes-license.rtf
rm resources/swatches/Galaxy_*
rm resources/swatches/Resene_*
rm resources/swatches/COPYING_RESENE.txt
rm resources/swatches/NAA*
rm resources/swatches/GiveLife_Color_System_*.xml
rm resources/swatches/givelife_colors_license.rtf
rm resources/swatches/Federal_Identity_Program.xml
# Remove non-free (CC-BY-SA-NC) dot files
rm resources/editorconfig/dot.*
# Remove non-free dic files
rm resources/dicts/hyph_fi.dic
# Remove license unknown dic files
rm resources/dicts/hyph_ia.dic resources/dicts/hyph_sv.dic
popd
echo "Creating sources ..."
tar cf - ${nv} | xz > ${freearchive}