#!/bin/sh

#
# (c) 2006 Holger Levsen
# This is script is free software licenced under the GPLv2
#
#
#
#
#
# This script is also a hack. Have fun, take care.
#
#
#
#
#
VERSION="0.8"

mkdir -p vobs
cd ../mpeg/720x576 
time for i in *.mpeg ; do cp $i ../../dvd/vobs/${i%.mpeg}.vob ; done 
cd ../../dvd

mkdir -p build
webdvd menus/main.html build/


cd build
mkisofs -o ../fosdem-debian-room_pal-dvd_${VERSION}.iso -dvd-video .
cd ..
md5sum fosdem-debian-room_pal-dvd_${VERSION}.iso > MD5SUM.txt
rm build vobs -r

