2018-06-21 22:15:54 +00:00
|
|
|
#/bin/sh
|
2018-06-21 21:29:49 +00:00
|
|
|
|
2018-07-30 22:05:37 +00:00
|
|
|
java=$(which java 2> /dev/null)
|
|
|
|
|
|
|
|
if [ -f dist/buildtools/closure-compiler.jar ] && [ "$java" != "" ]
|
2018-06-21 21:29:49 +00:00
|
|
|
then
|
2018-07-11 00:01:04 +00:00
|
|
|
echo "Minifying javascript"
|
2018-07-30 22:05:37 +00:00
|
|
|
[ htdocs/js/player.js -nt dist/htdocs/js/player.min.js ] && \
|
|
|
|
java -jar dist/buildtools/closure-compiler.jar htdocs/js/player.js > dist/htdocs/js/player.min.js
|
2018-08-22 12:06:22 +00:00
|
|
|
[ htdocs/js/mympd.js -nt dist/htdocs/js/mympd.min.js ] && \
|
|
|
|
java -jar dist/buildtools/closure-compiler.jar htdocs/js/mympd.js > dist/htdocs/js/mympd.min.js
|
2018-07-30 22:05:37 +00:00
|
|
|
[ htdocs/sw.js -nt dist/htdocs/sw.min.js ] && \
|
|
|
|
java -jar dist/buildtools/closure-compiler.jar htdocs/sw.js > dist/htdocs/sw.min.js
|
2018-06-21 21:56:39 +00:00
|
|
|
else
|
2018-08-01 09:01:34 +00:00
|
|
|
echo "dist/buildtools/closure-compiler.jar not found, using non-minified files"
|
2018-07-30 22:05:37 +00:00
|
|
|
[ htdocs/js/player.js -nt dist/htdocs/js/player.min.js ] && \
|
|
|
|
cp htdocs/js/player.js dist/htdocs/js/player.min.js
|
2018-08-22 12:06:22 +00:00
|
|
|
[ htdocs/js/mympd.js -nt dist/htdocs/js/mympd.min.js ] && \
|
|
|
|
cp htdocs/js/mympd.js dist/htdocs/js/mympd.min.js
|
2018-07-30 22:05:37 +00:00
|
|
|
[ htdocs/sw.js -nt dist/htdocs/sw.min.js ] && \
|
|
|
|
cp htdocs/sw.js dist/htdocs/sw.min.js
|
2018-06-21 21:29:49 +00:00
|
|
|
fi
|
2018-07-11 00:01:04 +00:00
|
|
|
|
2018-07-31 16:15:08 +00:00
|
|
|
if [ -f dist/buildtools/closure-stylesheets.jar ] && [ "$java" != "" ]
|
2018-07-11 00:01:04 +00:00
|
|
|
then
|
|
|
|
echo "Minifying stylesheets"
|
2018-08-22 12:06:22 +00:00
|
|
|
[ htdocs/css/mympd.css -nt dist/htdocs/css/mympd.min.css ] && \
|
|
|
|
java -jar dist/buildtools/closure-stylesheets.jar --allow-unrecognized-properties htdocs/css/mympd.css > dist/htdocs/css/mympd.min.css
|
2018-06-21 21:56:39 +00:00
|
|
|
else
|
2018-08-01 09:01:34 +00:00
|
|
|
echo "dist/buildtools/closure-stylesheets.jar not found, using non-minified files"
|
2018-08-22 12:06:22 +00:00
|
|
|
[ htdocs/css/mympd.css -nt dist/htdocs/css/mympd.min.css ] && \
|
|
|
|
cp htdocs/css/mympd.css dist/htdocs/css/mympd.min.css
|
2018-06-21 21:29:49 +00:00
|
|
|
fi
|
|
|
|
|
2018-07-30 22:05:37 +00:00
|
|
|
echo "Replacing javascript and stylesheets with minified files"
|
2018-08-22 12:06:22 +00:00
|
|
|
sed -e 's/mympd\.css/mympd\.min\.css/' -e 's/mympd\.js/mympd\.min\.js/' htdocs/index.html > dist/htdocs/index.html
|
|
|
|
sed -e 's/mympd\.css/mympd\.min\.css/' -e 's/player\.js/player\.min\.js/' htdocs/player.html > dist/htdocs/player.html
|
|
|
|
sed -i -e 's/mympd\.css/mympd\.min\.css/' -e 's/mympd\.js/mympd\.min\.js/' -e 's/player\.js/player\.min\.js/' dist/htdocs/sw.min.js
|
|
|
|
sed -i -e 's/\/sw\.js/\/sw\.min\.js/' dist/htdocs/js/mympd.min.js
|
2018-07-30 22:05:37 +00:00
|
|
|
echo "Minifying html"
|
|
|
|
perl -i -pe 's/^\s*//gm; s/\s*$//gm' dist/htdocs/index.html
|
|
|
|
perl -i -pe 's/^\s*//gm; s/\s*$//gm' dist/htdocs/player.html
|
|
|
|
|
2018-07-11 00:01:04 +00:00
|
|
|
echo "Compiling and installing mympd"
|
2018-06-21 21:29:49 +00:00
|
|
|
[ -d release ] || mkdir release
|
|
|
|
cd release
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_BUILD_TYPE=RELEASE ..
|
|
|
|
make
|
2018-06-21 22:15:54 +00:00
|
|
|
sudo make install
|
|
|
|
cd ..
|
|
|
|
|
2018-09-17 17:31:45 +00:00
|
|
|
debian/postinst
|