#!/bin/sh

## Warning, this is a shell script
## use sh README to rebuild the generator tarballs

## To make the data files, use tar like this :
# cd kdissprosperslides-data/
# tar czvf ../kdissprosperslides.tar.gz `find . -type f|grep -v ".arch"`
# (change kdissprosperslides by the name of the template you want

for dir in OOOimpress OOOdoc beamerslides prosperslides pdflatexarticle pdflatexbook htmldoc asciidoc applet stx; do
	pushd "kdiss$dir-data"; tar czvf ../kdiss$dir.tar.gz `find . -type f|grep -v ".arch"`; popd
done

## Hacking
#
# Add your template entry to SConscript.
# The base class of all templates is located in 
# src/kdissert/datastruct/DGenerator.h
# A tar file for your template (look above) is mandatory, 
# even if it is empty.
#
# Happy coding ! :)
#
## Thomas Nagy <tnagy2^8@yahoo.fr>
