Are there plans to make a version of this which gets the .tcz versions of all the components? I had to manually retrieve each one. Keeping the base name the same is important, so a "compiletc-tcz.tce" could be confusing. An empty compiletc.tcz would needlessly consume a loop device, so I'm not sure what the best solution would be. Maybe a /usr/local/tce.installed/compiletc script (within a user.tar.gz of course) that immediately unmounted the loop device? Something like:
LOOP=$(losetup -a|grep $(basename $0)|cut -d: -f1)
[ -n "$LOOP" ] && sudo umount $LOOP && and sudo losetup -d $LOOP
What do you think? I tested it and it seems to work. I'll submit my compiletc.tcz if this sounds good.