#!/bin/sh # build my info/dep file(s) and copy into /tmp before running script # I prefer wget to use no clobber as I retest the script # build depends tce-load -i compiletc submitqc4 wget tce-load -i aspell aspell-lib ncursesw-dev # download and unpack stuff # http://aspell.net/ is main site but used mirror for speed cd /tmp wget -nc http://mirror.optusnet.com.au/gnu/aspell/dict/de-alt/aspell6-de-alt-2.1-1.tar.bz2 tar jxvf aspell6-de-alt-2.1-1.tar.bz2 # tcz compile flags not needed its just a pack cd aspell6-de-alt-2.1-1 ./configure --vars DESTDIR=/usr/local make -j3 make DESTDIR=/tmp/aspell-de-alt install cd /tmp mksquashfs aspell-de-alt aspell-de-alt.tcz md5sum aspell-de-alt.tcz > aspell-de-alt.tcz.md5.txt cd aspell-de-alt find usr -not -type d > aspell-de-alt.tcz.list mv -f aspell-de-alt.tcz.list /tmp # complete cd /tmp submitqc4