Re: [go-nuts] create dmg

2016-07-30 Thread Anmol Sethi
And check this out: 
http://ramezanpour.net/post/2014/05/12/how-to-create-installation-dmg-files-in-os-x/

> On Jul 30, 2016, at 7:00 PM, Joe Blue  wrote:
> 
> recommended way for a gopher to make a dmg, so my users can install my golang 
> app ?
> 
> i searched for a pure golang solution, but go nada.
> 
> thanks joe
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to golang-nuts+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] create dmg

2016-07-30 Thread Anmol Sethi
I think you mean you want an .app they can drop in their /Applications folder.

A dmg is just a disk image. You can very easily create that: 
https://support.apple.com/kb/PH22247?locale=en_US

See https://mathiasbynens.be/notes/shell-script-mac-apps for creating a custom 
.app.

I know it says script but it should work fine for a go program.

> On Jul 30, 2016, at 7:00 PM, Joe Blue  wrote:
> 
> recommended way for a gopher to make a dmg, so my users can install my golang 
> app ?
> 
> i searched for a pure golang solution, but go nada.
> 
> thanks joe
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to golang-nuts+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] create dmg

2016-07-30 Thread Raffaele Sena
This uses some python modules, that should be ok if you are building your
installer on a mac:
http://dmgbuild.readthedocs.io/en/latest/



On Sat, Jul 30, 2016 at 4:00 PM, Joe Blue  wrote:

> recommended way for a gopher to make a dmg, so my users can install my
> golang app ?
>
> i searched for a pure golang solution, but go nada.
>
> thanks joe
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-nuts+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] create dmg

2016-07-30 Thread Joe Blue
recommended way for a gopher to make a dmg, so my users can install my 
golang app ?

i searched for a pure golang solution, but go nada.

thanks joe

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.