Update of /cvsroot/pure-data/externals/zexy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32229
Modified Files: z_install.bat Log Message: better (but untested) installation script
Index: z_install.bat =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/z_install.bat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** z_install.bat 4 Apr 2005 12:36:33 -0000 1.3 --- z_install.bat 4 Apr 2005 16:58:01 -0000 1.4 *************** *** 1,13 **** @echo off echo installing zexy on your system ! mkdir ..\extra ! copy zexy.dll ..\extra
echo copying help files ! mkdir ..\extra\help-zexy ! copy examples* ..\extra\help-zexy
echo copying abstractions ! copy abs*.pd ..\extra
echo done --- 1,50 ---- @echo off + REM ============================================== + REM adapt the following to your needs + REM ============================================== + + REM where does PD reside ?? + REM if you want spaces in the path, please use quotes ("") + set PDPATH=C:\programme\pd + + REM which pd-version do we have ? + set PDVERSION=0.37 + + REM ============================================== + REM do not edit below this line !!! + REM ============================================== + + echo installing zexy on your system ! IF NOT EXIST %PDPATH%\bin\pd.exe goto location_error ! ! set BINPATH=extra ! set REFPATH=extra\help-zexy ! ! if %PDVERSION% LSS 0.37 set REFPATH=doc\5.reference\zexy ! ! echo Copying binary... ! copy zexy.dll %PDPATH%%BINPATH% > tempInstall.trash
echo copying help files ! mkdir %PDPATH%%REFPATH% ! copy examples* %PDPATH%%REFPATH%
echo copying abstractions ! copy abs*.pd %PDPATH%BINPATH%
echo done + goto end + + :location_error + echo : + echo : i believe i am in the wrong directory + echo : i thought that the pd-executable would be %PDPATH%\bin\pd.exe + echo : obviously it is not !!! + echo : please edit this file and set the PDPATH-variable apropriatly + echo : + echo : stopping installation + echo : + + :end + pause