1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#!/bin/sh
# jquery.mb.extruder.dfsg
# This script can be used with two switches:
#
# --makesrc <path> this one tells a path, where something from a third party
# can be installed
# --install <path> that one make all actions necessay at install time when
# the binary packages are built. path is usually DESTDIR
githubRepo=https://github.com/pupunzi/jquery.mb.extruder
tag=2.6.0
pkgdir=jquery.mb.extruder-2.6.0
sha1sum=1408525305d52e4a339135074582e82725d9ad77
if [ "$1" = "--makesrc" ]; then
pkgroot=$2
rm -rf ${pkgroot}/wims/public_html/scripts/js/bower_components/jquery.mb.extruder
mkdir -p ${pkgroot}/third-parties
cd ${pkgroot}/third-parties
wget ${githubRepo}/archive/${tag}.tar.gz
if echo "${sha1sum} ${tag}.tar.gz" | sha1sum --check --quiet; then
echo "Checked ${tag}.tar.gz OK"
else
echo "Mismatch in the checksum of ${tag}.tar.gz"
exit 1
fi
tar xzf ${tag}.tar.gz
rm -f ${tag}.tar.gz
# beautify files (which were not completely ugly, just space-compressed)
cd ${pkgdir}/inc
for f in *.js; do
js-beautify -w 80 -s 2 -n $f > tmp && mv tmp $f
done
mv jquery.hoverIntent.min.js jquery.hoverIntent.js
fi
if [ "$1" = "--install" ]; then
DESTDIR=$2
# cd to the directory unfolded from
#
dest=${DESTDIR}/var/lib/wims/public_html/scripts/js/bower_components/jquery.mb.extruder
mkdir -p $(dirname ${dest})
rm -rf ${dest}
echo "cp -a third-parties/${pkgdir} ${dest}"
cp -a third-parties/${pkgdir} ${dest}
rm -rf ${dest}/*.html ${dest}/licenses
find ${dest} -type f | xargs chmod 644
wd=$(pwd)
# a file jquery.hoverIntent.min.js is necessary, we shall replace it
# by a symlink to the beautified file jquery.hoverIntent.js
cd ${dest}/inc
rm -f jquery.hoverIntent.min.js
ln -s jquery.hoverIntent.js jquery.hoverIntent.min.js
cd ${wd}
cd ${dest}/parts
# remove privacy-breach-logos
for f in extruderLeft.html extruderLeft1.html; do
sed 's%.*<img src="http://.*%%' $f > $f.tmp && mv $f.tmp $f
done
fi
|