Skip to content

Commit f2c909a

Browse files
committed
fix for homebrew problem
1 parent f80d75b commit f2c909a

File tree

2 files changed

+5
-38
lines changed

2 files changed

+5
-38
lines changed

bin/generate-formula.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ generate_brew_formula_build()
1717
local name="$2"
1818
local version="$3"
1919

20-
generate_brew_formula_mulle_build "${project}" "${name}" "${version}"
21-
generate_brew_formula_mulle_test "${project}" "${name}" "${version}"
20+
cat <<EOF
21+
def install
22+
system "xcodebuild", "DSTROOT=#{prefix}", "INSTALL_PATH=/bin", "install"
23+
end
24+
EOF
2225
}
2326

2427

bin/release.sh

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -37,42 +37,6 @@
3737
# ./bin/release.sh -v -n --publisher mulle-nat --publisher-tap mulle-kybernetik/software/
3838
#
3939

40-
#######
41-
# If you are using mulle-build, you don't hafta change anything
42-
#######
43-
44-
#
45-
# Generate your `def install` `test do` lines here. echo them to stdout.
46-
#
47-
generate_brew_formula_build()
48-
{
49-
local project="$1"
50-
local name="$2"
51-
local version="$3"
52-
53-
generate_brew_formula_mulle_build "${project}" "${name}" "${version}"
54-
generate_brew_formula_mulle_test "${project}" "${name}" "${version}"
55-
}
56-
57-
58-
#
59-
# If you are unhappy with the formula in general, then change
60-
# this function. Print your formula to stdout.
61-
#
62-
generate_brew_formula()
63-
{
64-
# local project="$1"
65-
# local name="$2"
66-
# local version="$3"
67-
# local dependencies="$4"
68-
# local builddependencies="$5"
69-
# local homepage="$6"
70-
# local desc="$7"
71-
# local archiveurl="$8"
72-
73-
_generate_brew_formula "$@"
74-
}
75-
7640

7741
#######
7842
# Ideally changes to the following values are done with the command line

0 commit comments

Comments
 (0)