Page 2 of 2

Re: Löve on Ubuntu/Linux

Posted: Mon Feb 18, 2013 11:44 am
by Robin
I really want LÖVE-Builder. :( Whatever happened to that? (Aside from nothing.)

It was amazing: upload a .love, fill in a few fields, and it automatically makes binaries for Windows, OS X and Linux and .debs for Ubuntu and oh my god that was just perfect.

Re: Löve on Ubuntu/Linux

Posted: Mon Feb 18, 2013 1:57 pm
by vrld
I didn't try it yet, but CDE seems to be a good way to distribute stuff on linux. CDE packages should work cross-distribution, as long as you have the same processor type (i.e. x86 32 or 64 bit).

Re: Löve on Ubuntu/Linux

Posted: Tue Feb 19, 2013 1:05 am
by josefnpat
Robin wrote:I really want LÖVE-Builder. :( Whatever happened to that? (Aside from nothing.)

It was amazing: upload a .love, fill in a few fields, and it automatically makes binaries for Windows, OS X and Linux and .debs for Ubuntu and oh my god that was just perfect.
The guy that was hosting it, was trying to scam anyone and everyone he could.

Re: Löve on Ubuntu/Linux

Posted: Tue Feb 19, 2013 4:12 am
by master both
vrld wrote:I didn't try it yet, but CDE seems to be a good way to distribute stuff on linux. CDE packages should work cross-distribution, as long as you have the same processor type (i.e. x86 32 or 64 bit).
Hey, thats an excellent way to distribute love games for linux. I try it and it work perfect, but i had to tweak it a little to support love, so if you dont know shell then its not gonna work.

Re: Löve on Ubuntu/Linux

Posted: Tue Feb 19, 2013 7:24 am
by josefnpat
master both wrote:
vrld wrote:I didn't try it yet, but CDE seems to be a good way to distribute stuff on linux. CDE packages should work cross-distribution, as long as you have the same processor type (i.e. x86 32 or 64 bit).
Hey, thats an excellent way to distribute love games for linux. I try it and it work perfect, but i had to tweak it a little to support love, so if you dont know shell then its not gonna work.
Any chance you can share your tweaks? I'm exploring this right now, and it seems like a great idea.

Even if hello world is 36MB :)

Re: Löve on Ubuntu/Linux

Posted: Tue Feb 19, 2013 7:48 am
by substitute541
Hmmm...

The simplest can be a .bat file that has all 3 lines for each distribution. Even better, a C program that takes some arguments, and then runs the .bat file depending on the arguments. Even better, a .love file that can create distributions for each OS... a .love that can create a .love..? :shock:

Re: Löve on Ubuntu/Linux

Posted: Tue Feb 19, 2013 9:32 am
by Robin
josefnpat wrote:
Robin wrote:I really want LÖVE-Builder. :( Whatever happened to that? (Aside from nothing.)

It was amazing: upload a .love, fill in a few fields, and it automatically makes binaries for Windows, OS X and Linux and .debs for Ubuntu and oh my god that was just perfect.
The guy that was hosting it, was trying to scam anyone and everyone he could.
Oh, hm.

I'll host it if that's okay. Of course, it'll be a subdomain of robinwell.net then.

Re: Löve on Ubuntu/Linux

Posted: Tue Feb 19, 2013 10:36 am
by thelinx
Robin wrote:Whatever happened to that?
You mean the one that one guy made? I guess he ran out of investor funding.

If you guys didn't know already, Project Hawkthorne already has automatically building binaries. Take a look and see what you can copy.

Re: Löve on Ubuntu/Linux

Posted: Tue Feb 19, 2013 3:09 pm
by master both
josefnpat wrote:
Any chance you can share your tweaks? I'm exploring this right now, and it seems like a great idea.

Even if hello world is 36MB :)
ok :), but you will have to wait, cause I will be out for a week and I have the files in my home. :(

Re: Löve on Ubuntu/Linux

Posted: Tue Feb 19, 2013 6:12 pm
by Inny
For my stuff, I have a plain old Makefile doing the work for me

Code: Select all

BUNDLE = fill_in_the_blanks.love
FILES = conf.lua  main.lua  and_everything_else_here

love:
	zip -r $(BUNDLE) $(FILES)
So when I'm ready to stamp out a .love file, I go into that directory and type make love