2019-11-21 13:31:28 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# This bash script gets and unpacks the latest fontforge AppImage
|
|
|
|
|
2019-11-28 12:04:22 +00:00
|
|
|
source buildScripts/reSourceVersionEnvs
|
2019-11-21 14:13:14 +00:00
|
|
|
|
2019-11-21 18:43:26 +00:00
|
|
|
FONTFORGE_SRC=$FONTFORGE_VERSION.tar.gz
|
2019-11-21 14:13:14 +00:00
|
|
|
|
2019-11-21 14:24:29 +00:00
|
|
|
rm -rf $FONTFORGE_SRC
|
|
|
|
rm -rf fontforge
|
2019-11-21 14:13:14 +00:00
|
|
|
|
2019-11-21 16:38:40 +00:00
|
|
|
wget https://github.com/fontforge/fontforge/archive/$FONTFORGE_SRC
|
2019-11-21 14:13:14 +00:00
|
|
|
|
2019-11-21 14:24:29 +00:00
|
|
|
tar xvf $FONTFORGE_SRC
|
2019-11-21 13:31:28 +00:00
|
|
|
|
2019-11-21 14:24:29 +00:00
|
|
|
mv fontforge-$FONTFORGE_VERSION fontforge
|