From 34922681430184bdc11241d41d8f4370581c4d03 Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Sat, 1 Sep 2012 10:47:36 +0200 Subject: [PATCH] remove distribute script --- distribute | 101 ----------------------------------------------------- 1 file changed, 101 deletions(-) delete mode 100755 distribute diff --git a/distribute b/distribute deleted file mode 100755 index 01bda9c..0000000 --- a/distribute +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/bash - -compile_hbf () -{ - make -C main/ || exit 1 -} - -compile_boot () -{ - if [[ -e $PWD/hbf.dol && ! $FORCE ]]; then - cp main/hbf.dol boot/source/hbf.dol - make -C boot/ || exit 1 - else compile_hbf - cp main/hbf.dol boot/source/hbf.dol - make -C boot/ || exit 1 - fi - -} - -compile_installer () -{ - if [[ -e boot/hbf_boot.dol && ! $FORCE ]]; then - cp boot/hbf_boot.dol installer/wad/00000001.app - else compile_boot - cp boot/hbf_boot.dol installer/wad/00000001.app - fi - - wine tools/WadMii.exe -input "Z:\home\chris\Projekte\homebrewfilter\installer\wad" -output "Z:\home\chris\Projekte\homebrewfilter\installer\data\install.wad" - sleep 5 - - if [[ -e installer/data/install.wad ]]; then - make -C installer || exit 1 - else echo -e "--Error installer/data/install.wad not found--" - exit 1 - fi - -} - -make_distribution () -{ - - if [[ -e installer/installer.dol && ! $FORCE ]]; then - cp installer/installer.dol HomebrewFilter/boot.dol - else compile_installer - cp installer/installer.dol HomebrewFilter/boot.dol - fi - - XREV=$(grep "define SVN_REV" svnrev/svnrev.c | gawk '{print $3}') - - cp main/data/meta.xml.in HomebrewFilter/meta.xml - - sed -e "s/@REV@/$XREV/g" -i HomebrewFilter/meta.xml - sed -e '/./{H;$!d;}' -e "x;/rev$XREV/!d;" updates >> HomebrewFilter/meta.xml - echo -e "\n \n" >> HomebrewFilter/meta.xml -} - -make_filelist() -{ - - ARC=$1 - THM=$(basename $1 .zip) - - unp -U $1 - - cd $THM/ - - for i in $(ls -1 *.png *.xml); do \ - echo "$THM/file:$i" >> temp ; \ - cat temp | tr "\n" "+" > filelist ; \ - done - -} - -case $1 in - - "-c" ) - make -C main clean - make -C boot clean - make -C installer clean - rm -f HomebrewFilter/{boot.dol,meta.xml} - ;; - - "-l" ) - make_filelist $2 - ;; - - "-f" ) - FORCE=YES - make_distribution - ;; - - "-b" ) - FORCE=YES - compile_boot - ;; - - * ) - make_distribution - ;; - -esac