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
  
     | 
    
      #!/bin/sh
# tablesort.sh
# 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/tristen/tablesort
tag=v5.0.2
pkgdir=tablesort-5.0.2
sha1sum=ae02819eb480374e869fb69dd93b756a7a6abd8f
if [ "$1" = "--makesrc" ]; then
    pkgroot=$2
    rm -f ${pkgroot}/wims/public_html/scripts/js/tablesort.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
    rm -rf ${pkgdir}/dist
fi
if [ "$1" = "--install" ]; then
    DESTDIR=$2
    # cd to the directory unfolded from
    #
    dest=${DESTDIR}/var/lib/wims/public_html/scripts/js
    mkdir -p ${dest}
    cp third-parties/${pkgdir}/tablesort.js ${dest}
    cp third-parties/${pkgdir}/sorts/tablesort.number.js ${dest}
fi
 
     |