All Projects → Xeoncross → Macappshell

Xeoncross / Macappshell

Creates a Mac OSX .app folder (complete with icons) ready for your binary file. Perfect for Golang, Rust, C++, etc..

Programming Languages

shell
77523 projects
rust
11053 projects
golang
3204 projects

Projects that are alternatives of or similar to Macappshell

Macvars
command library for scripting osx
Stars: ✭ 34 (-88.28%)
Mutual labels:  osx, mac-osx
Get It
A macOS GUI for youtube-dl
Stars: ✭ 483 (+66.55%)
Mutual labels:  osx, gui
Shoes4
Shoes 4 : the next version of Shoes
Stars: ✭ 1,509 (+420.34%)
Mutual labels:  mac-osx, gui
Pywebview
Build GUI for your Python program with JavaScript, HTML, and CSS
Stars: ✭ 2,649 (+813.45%)
Mutual labels:  osx, gui
Git Cola
git-cola: The highly caffeinated Git GUI
Stars: ✭ 1,787 (+516.21%)
Mutual labels:  osx, gui
Chrysalisp
Parallel OS, with GUI, Terminal, OO Assembler, Class libraries, C-Script compiler, Lisp interpreter and more...
Stars: ✭ 1,205 (+315.52%)
Mutual labels:  osx, gui
Sloth
Mac app that shows all open files, directories, sockets, pipes and devices in use by all running processes. Nice GUI for lsof.
Stars: ✭ 4,549 (+1468.62%)
Mutual labels:  osx, gui
Hello imgui
Hello, Dear ImGui: cross-platform Gui apps for Windows / Mac / Linux / iOS / Android / Emscripten with the simplicity of a "Hello World" app
Stars: ✭ 120 (-58.62%)
Mutual labels:  osx, gui
Desktop Google Keep Osx
A Super Simple Desktop Client for Mac OSX Built in Javascript and MacGap
Stars: ✭ 159 (-45.17%)
Mutual labels:  osx, mac-osx
Qnapi
Qt-based, multi-engine, multi-platform subtitle downloader
Stars: ✭ 226 (-22.07%)
Mutual labels:  osx, gui
Mapmap
Open source video mapping software
Stars: ✭ 282 (-2.76%)
Mutual labels:  osx
Netbeans Mmd Plugin
Free mind map and PlantUML editor with plugins for both NetBeans and Intellij
Stars: ✭ 283 (-2.41%)
Mutual labels:  gui
Fynedesk
A full desktop environment for Linux/Unix using Fyne
Stars: ✭ 286 (-1.38%)
Mutual labels:  gui
Conrod
An easy-to-use, 2D GUI library written entirely in Rust.
Stars: ✭ 3,222 (+1011.03%)
Mutual labels:  gui
Beast
HTTP and WebSocket built on Boost.Asio in C++11
Stars: ✭ 3,241 (+1017.59%)
Mutual labels:  osx
Vmware Usb Osx
Easily create a bootable USB installer for VMware ESXi / vSphere Hypervisor
Stars: ✭ 286 (-1.38%)
Mutual labels:  osx
Love Nuklear
Lightweight immediate mode GUI for LÖVE games
Stars: ✭ 281 (-3.1%)
Mutual labels:  gui
Eiskaltdcpp
File sharing program using DC and ADC protocols
Stars: ✭ 277 (-4.48%)
Mutual labels:  gui
Johnny
GUI frontend to John the Ripper password cracker
Stars: ✭ 277 (-4.48%)
Mutual labels:  gui
Macpin
a webapp container & site specific browser made from WebKit.swift and JavaScriptCore
Stars: ✭ 289 (-0.34%)
Mutual labels:  osx

Mac App Shell

Creates a Mac OSX .app folder (complete with icons) ready for your binary file. Perfect for Golang, C++, Rust, or any other language that compiles to a binary file on OSX.

Usage

  1. Download or clone the repo.

  2. Pass the name of your Application and an image file for the icon.

     $ ./setup.sh MyNewApp app-icon.svg
    
  3. Then just copy the binary file into the folder

     $ cp mybinary MyNewApp.app/Contents/MacOS/MyNewApp
    

Icon formats:

The image file can be .svg (recomended), .png, .gif, .jpg, or .tiff format.

Free SVG Icons

GUI

It's recomended your .app have a GUI if you want to interact with a user (since the terminal is not shown).

Example

There is an examples folder contains a GUI example. Download an icon to use.

Go

Build the go project, run the macappshell script, and then move the go binary into the new .app folder.

	cd examples/Go/
	go build *.go
	cd ../../
	./setup.sh hello ion-quote.svg
	mv example/Go/hello hello.app/Contents/MacOS

Rust

todo

C++

todo

MIT License

Copyright (c) 2017 David Pennington

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Thanks to @HaoDong for his original gist.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].