#!/bin/bash -e # This script was used to create the following file stored in the same # directory as this script: # # upstream-bluegorilla.tar.gz # Do not re-execute in the same directory or it will delete the tar- # ball in question. # As of December 15, 2021, upstream for this component was gone and no # new location had been found. # The patch in the following file has been applied: # sp-bluegorilla-hunspell.spcpat exit 0 #--------------------------------------------------------------------- ORNAME=bluegorilla USNAME=upstream-$ORNAME LINK=https://github.com/djames1/bluegorilla.git rm -fr $USNAME $ORNAME $USNAME.tar* $ORNAME.tar* git clone $LINK $ORNAME tar zcf $USNAME.tar.gz $ORNAME/ rm -fr $ORNAME/ tardate $USNAME.tar.gz ls -l $USNAME.tar.gz echo Done