rem builds .love and .exe and a .zip containing .exe+dlls
call %~dp0\conf.bat
cd %PROJDIR%\
mkdir build
mkdir build\exe
del build\%PROJNAME%.love
del %temp%\%PROJNAME%~.love
zip -r %temp%\%PROJNAME%~.love * -x .hg\* build\*
copy %temp%\%PROJNAME%~.love build\%PROJNAME%.love
del build\exe\%PROJNAME%.exe
copy /b %LOVEDIR%\love.exe+build\%PROJNAME%.love build\exe\%PROJNAME%.exe
copy %LOVEDIR%\*.dll build\exe
del build\%PROJNAME%_exe.zip
cd build\exe
zip -r ..\%PROJNAME%_exe.zip *
cd %PROJDIR%\
bitbucket.bat (builds then pull+commit+push on bitbucket project)
Would anyone be interested in me creating a topic on how to set up packaging and uploading to a ppa for Ubuntu? Bartbes helped me with a pretty sweet setup that allows me to work on my projects like always, using git and a remote repo at github (should be easily edited to use any other kind of vcs though), as well as enable me to build and publish packages to my ppa automatically.
Last edited by nevon on Wed Oct 20, 2010 11:18 am, edited 1 time in total.
nevon wrote:Would anyone be interested in me creating a topic on how to set up packaging and uploading to a ppa for Ubuntu? Bartbes helped me with a pretty sweet setup that allows me to work on my projects like always, using git and a remote repo at github (should be easily edited to use any other kind of vcs though), as well as enable me to build and publish packages to my ppa automatically.
That would be interesting... reminds me, I think I might write a tool to automatically make a .deb (that depends on the right version of LÖVE) out of a love project, anyone interested in that?