-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
120 additions
and
2 deletions.
There are no files selected for viewing
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,29 @@ | ||
# -- Formula Info -- | ||
# If you don't have this file, there will be no homebrew | ||
# formula operations. | ||
# | ||
PROJECT="mulle-xcode-to-cmake" # your project/repository name | ||
DESC="🎭 Convert Xcode projects to cmake CMakeLists.txt " | ||
LANGUAGE="objc" # c,cpp, objc, bash ... | ||
# NAME="${PROJECT}" # formula filename without .rb extension | ||
|
||
# | ||
# Specify needed homebrew packages by name as you would when saying | ||
# `brew install`. | ||
# | ||
# Use the ${DEPENDENCY_TAP} prefix for non-official dependencies. | ||
# DEPENDENCIES and BUILD_DEPENDENCIES will be evaled later! | ||
# So keep them single quoted. | ||
# | ||
# DEPENDENCIES='${DEPENDENCY_TAP}mulle-concurrent | ||
# libpng | ||
# ' | ||
|
||
# | ||
# Build via mulle-build. If you don't like this | ||
# edit bin/release.sh. Need to specify mulle-build dependencies | ||
# so that brew picks up the internal path! | ||
# | ||
#BUILD_DEPENDENCIES='${BOOTSTRAP_TAP}mulle-build | ||
#${BOOTSTRAP_TAP}mulle-bootstrap | ||
#' # cmake may be useful to add |
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,45 @@ | ||
# | ||
# For documentation and help see: | ||
# https://github.com/mulle-nat/mulle-homebrew | ||
# | ||
# | ||
|
||
####### | ||
# If you are using mulle-build, you don't hafta change anything | ||
####### | ||
|
||
# | ||
# Generate your `def install` `test do` lines here. echo them to stdout. | ||
# | ||
generate_brew_formula_build() | ||
{ | ||
local project="$1" | ||
local name="$2" | ||
local version="$3" | ||
|
||
cat <<EOF | ||
def install | ||
system "xcodebuild", "DSTROOT=#{prefix}", "INSTALL_PATH=/bin", "install" | ||
end | ||
EOF | ||
} | ||
|
||
|
||
# | ||
# If you are unhappy with the formula in general, then change | ||
# this function. Print your formula to stdout. | ||
# | ||
generate_brew_formula() | ||
{ | ||
# local project="$1" | ||
# local name="$2" | ||
# local version="$3" | ||
# local dependencies="$4" | ||
# local builddependencies="$5" | ||
# local homepage="$6" | ||
# local desc="$7" | ||
# local archiveurl="$8" | ||
|
||
_generate_brew_formula "$@" | ||
} | ||
|
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,13 @@ | ||
PUBLISHER="mulle-nat" | ||
PUBLISHER_TAP="mulle-kybernetik/software" | ||
PUBLISHER_FULLNAME="Mulle kybernetiK" | ||
PUBLISHER_EMAIL="Nat! <nat@mulle-kybernetik.de>" | ||
PUBLISHER_DOMAIN="mulle-kybernetik.com" | ||
#PUBLISHER_LOGO="mulle-objc-logo-opaque-48x48.txt" | ||
PUBLISHER_LOGO="mulle-logo-48x48.txt" | ||
|
||
# | ||
# derivable stuff | ||
# | ||
PUBLISHER_PUBLICKEY_URL="http://www.${PUBLISHER_DOMAIN}/dists/admin-pub.asc" | ||
PUBLISHER_DEBIAN_URL="http://www.${PUBLISHER_DOMAIN}" |
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.0.6 |
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,8 @@ | ||
# -- Version Info -- | ||
# | ||
# Keep these commented out, if the automatic detection works well | ||
# enough for you. If you don't have this file, there will be | ||
# not git operations. | ||
# | ||
VERSIONFILE=mulle-xcode-to-cmake.xcodeproj/project.pbxproj | ||
VERSIONNAME=CURRENT_PROJECT_VERSION |
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,2 +1,3 @@ | ||
foundation/legacy-developer;meta | ||
foundation/legacy;runtime | ||
mulle-sde/mulle-project;extra |
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 @@ | ||
0.0.1 |
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