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
|
#!/bin/sh
# what-input.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/cdolivet/EditArea
tag=v0.8.2
pkgdir=EditArea-0.8.2
sha1sum=138df7ee51de635347966f5df40f114296ab898c
if [ "$1" = "--makesrc" ]; then
pkgroot=$2
rm -rf ${pkgroot}/wims/public_html/scripts/js/edit_area/edit_area_full.js
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
# delete uglified files
wd=$(pwd)
cd ${pkgdir}/edit_area
rm -f edit_area_full.*
# there are uglified files like extended_php_list.js there.
cd ${wd}
cd ${pkgdir}
rm -rf _devel
fi
if [ "$1" = "--install" ]; then
DESTDIR=$2
# cd to the directory unfolded from
#
dest=${DESTDIR}/var/lib/wims/public_html/scripts/js/edit_area
mkdir -p $(dirname ${dest})
rm -rf ${dest}
cp -a third-parties/${pkgdir}/edit_area ${dest}
find ${dest} -type f | xargs chmod 644
# compile the source files to edit_area_full.js
cd ${dest}
php edit_area_compressor.php > /dev/null
if [ -f edit_area_full.js ]; then
echo "compiled edit_area_full.js successfully"
else
echo "could not compile edit_area_full.js"
exit 1
fi
fi
|