Generating a binary package like PharoLauncher

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Generating a binary package like PharoLauncher

SergeStinckwich
Dear all,

I would like to distribute Kendrick like PharoLauncher, i.e as a
binary package for mac and windows. Are the script of CI for
generating PharoLauncher available somewhere ?

Thank you.
--
Serge Stinckwich
UCBN & UMI UMMISCO 209 (IRD/UPMC)
Every DSL ends up being Smalltalk
http://www.doesnotunderstand.org/

Reply | Threaded
Open this post in threaded view
|

Re: Generating a binary package like PharoLauncher

Esteban A. Maringolo
If it exists, please check the windows installer of Pharo-Launcher, it
complains about an integrity check failure. :)

If you can access the scrips, this is the CI for it:
https://ci.inria.fr/pharo/view/Launcher/job/Launcher/

Regards!
Esteban A. Maringolo


2016-01-18 14:23 GMT-03:00 Serge Stinckwich <[hidden email]>:

> Dear all,
>
> I would like to distribute Kendrick like PharoLauncher, i.e as a
> binary package for mac and windows. Are the script of CI for
> generating PharoLauncher available somewhere ?
>
> Thank you.
> --
> Serge Stinckwich
> UCBN & UMI UMMISCO 209 (IRD/UPMC)
> Every DSL ends up being Smalltalk
> http://www.doesnotunderstand.org/
>

Reply | Threaded
Open this post in threaded view
|

Re: Generating a binary package like PharoLauncher

SergeStinckwich
On Mon, Jan 18, 2016 at 6:31 PM, Esteban A. Maringolo
<[hidden email]> wrote:
> If it exists, please check the windows installer of Pharo-Launcher, it
> complains about an integrity check failure. :)
>
> If you can access the scrips, this is the CI for it:
> https://ci.inria.fr/pharo/view/Launcher/job/Launcher/

Yes, I have access to the CI, but I could not find the scripts.

--
Serge Stinckwich
UCBN & UMI UMMISCO 209 (IRD/UPMC)
Every DSL ends up being Smalltalk
http://www.doesnotunderstand.org/

Reply | Threaded
Open this post in threaded view
|

Re: Generating a binary package like PharoLauncher

Damien Cassou-2
In reply to this post by SergeStinckwich
Serge Stinckwich <[hidden email]> writes:

> Dear all,
>
> I would like to distribute Kendrick like PharoLauncher, i.e as a
> binary package for mac and windows. Are the script of CI for
> generating PharoLauncher available somewhere ?

https://github.com/pharo-project/pharo-ci/blob/master/ci-jobs/pharo/Launcher/build.sh
https://github.com/pharo-project/pharo-ci/blob/master/ci-jobs/pharo/Launcher-Mac/build.sh
https://github.com/pharo-project/pharo-ci/blob/master/ci-jobs/pharo/Launcher-Win/build.sh

these 3 scripts control the 3 jobs at https://ci.inria.fr/pharo/view/Launcher/

--
Damien Cassou
http://damiencassou.seasidehosting.st

"Success is the ability to go from one failure to another without
losing enthusiasm." --Winston Churchill

Reply | Threaded
Open this post in threaded view
|

Re: Generating a binary package like PharoLauncher

hernanmd
In reply to this post by SergeStinckwich
Hi Serge,

I wrote a code generator package with uses Mustache and generates a NSIS script. As an example:

    CGNSISIPharo4AppInstaller uniqueInstance
        product: 'MyProduct';
        identity: 'MyName';
        version: '1.0.0';
        url: 'http://www.google.com';
        launcher: 'MyLauncher.exe';
        licenseEnFileName: 'LICENSE_ENGLISH';
        iconFile: 'MyProduct.ico';
        welcomeBmpFile: 'MyProduct.bmp';
        splashBMPFileName: 'Splash.bmp';
        generate.

Maybe that's what you're looking for?

Hernán


2016-01-18 14:23 GMT-03:00 Serge Stinckwich <[hidden email]>:
Dear all,

I would like to distribute Kendrick like PharoLauncher, i.e as a
binary package for mac and windows. Are the script of CI for
generating PharoLauncher available somewhere ?

Thank you.
--
Serge Stinckwich
UCBN & UMI UMMISCO 209 (IRD/UPMC)
Every DSL ends up being Smalltalk
http://www.doesnotunderstand.org/