#!/bin/sh # /etc/postinstall/susv4.sh - Cygwin SUSV4 download and install # based on Debian sus/susv4 packages to comply with individual download terms dl=http://pubs.opengroup.org/onlinepubs/9699919799/download/ doc=/usr/share/doc/susv4 tmp=${TMPDIR:-/tmp} tbz=$(/usr/bin/wget -q -O- $dl | \ /bin/sed '/\.tar\.bz2/!d;s/^.*href="\([^">]\+\.tar\.bz2\).*$/\1/') && \ /usr/bin/wget -N -nv -P $tmp/ $dl$tbz && \ /bin/mkdir -p $doc/ && \ /bin/tar -xf $tmp/$tbz -C $doc/ && \ /bin/rm -f $tmp/$tbz