-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated upstream
create-dmg
to latest version (#10)
- Loading branch information
1 parent
06d3e32
commit 798a803
Showing
20 changed files
with
936 additions
and
654 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package bindata | ||
|
||
//go:generate bash -c "go-bindata -prefix '../../../vendor/create-dmg' -pkg bindata ../../../vendor/create-dmg/*" | ||
//go:generate bash -c "go-bindata -prefix '../../../vendor/create-dmg' -pkg bindata ../../../vendor/create-dmg/* ../../../vendor/create-dmg/.this-is-the-create-dmg-repo" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# EditorConfig for create-dmg project | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
|
||
# We use tabs in our own code | ||
[{create-dmg,*.applescript,*.sh}] | ||
indent_style = tab | ||
indent_size = 2 | ||
|
||
# But the Python code we pull in from pyhacker uses spaces | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.svn | ||
.vscode | ||
|
||
*.dmg | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This is just a dummy file so create-dmg can tell whether it's being run from | ||
inside the Git repo or from an installed location. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Makefile for Cowsay | ||
|
||
PACKAGE_TARNAME = create-dmg | ||
|
||
prefix = /usr/local | ||
exec_prefix = ${prefix} | ||
bindir = ${exec_prefix}/bin | ||
datarootdir = ${prefix}/share | ||
datadir = ${datarootdir} | ||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} | ||
sysconfdir = ${prefix}/etc | ||
mandir=${datarootdir}/man | ||
srcdir = . | ||
|
||
SHELL = /bin/sh | ||
INSTALL = install | ||
INSTALL_PROGRAM = $(INSTALL) | ||
INSTALL_DATA = ${INSTALL} -m 644 | ||
|
||
.PHONY: install uninstall | ||
|
||
install: create-dmg | ||
$(INSTALL) -d $(DESTDIR)$(prefix) | ||
$(INSTALL) -d $(DESTDIR)$(bindir) | ||
$(INSTALL_PROGRAM) create-dmg $(DESTDIR)$(bindir)/create-dmg | ||
$(INSTALL) -d $(DESTDIR)$(datadir)/$(PACKAGE_TARNAME) | ||
cp -R support $(DESTDIR)$(datadir)/$(PACKAGE_TARNAME) | ||
cp -R examples $(DESTDIR)$(datadir)/$(PACKAGE_TARNAME) | ||
cp -R tests $(DESTDIR)$(datadir)/$(PACKAGE_TARNAME) | ||
|
||
uninstall: | ||
rm -f $(DESTDIR)$(bindir)/create-dmg | ||
rm -rf $(DESTDIR)$(datadir)/$(PACKAGE_TARNAME) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.