1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00
ttrss/lib/dojo-src/rebuild-dojo.sh

45 lines
1.3 KiB
Bash
Raw Normal View History

2012-08-14 16:59:10 +02:00
#!/bin/bash
# This script rebuilds customized layer of Dojo for tt-rss
# Place unpacked Dojo source release in this directory and run this script.
# It will automatically replace previous build of Dojo in ../dojo
# Dojo requires Java runtime to build. Further information on rebuilding Dojo
# is available here: http://dojotoolkit.org/reference-guide/build/index.html
2021-11-15 16:48:47 +01:00
VERSION=1.16.4
2013-04-05 03:50:39 +02:00
# Download and extract dojo src code if it doesn't already exist
if [ ! -d "dojo" ]; then
TARBALL=dojo-release-$VERSION-src.tar.gz
if [ ! -f $TARBALL ]; then
wget -q http://download.dojotoolkit.org/release-$VERSION/$TARBALL
fi
tar -zxf $TARBALL
mv dojo-release-$VERSION-src/* .
rm -rf dojo-release-$VERSION-src
fi
if [ -d util/buildscripts/ ]; then
2012-08-14 16:59:10 +02:00
rm -rf release/dojo
pushd util/buildscripts
2013-04-05 03:50:39 +02:00
./build.sh profile=../../tt-rss action=release optimize=shrinksafe cssOptimize=comments
popd
if [ -d release/dojo ]; then
2011-11-08 17:40:44 +01:00
rm -rf ../dojo ../dijit
2012-08-14 16:59:10 +02:00
cp -r release/dojo/dojo ..
cp -r release/dojo/dijit ..
cd ..
find dojo -name '*uncompressed*' -exec rm -- {} \;
find dijit -name '*uncompressed*' -exec rm -- {} \;
else
echo $0: ERROR: Dojo build seems to have failed.
fi
else
echo $0: ERROR: Please unpack Dojo source release into current directory.
2018-12-04 14:23:37 +01:00
fi