aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Formula/__template.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/Formula/__template.rb b/Formula/__template.rb
new file mode 100644
index 000000000..2d7ba2407
--- /dev/null
+++ b/Formula/__template.rb
@@ -0,0 +1,11 @@
+$:.unshift "#{File.dirname __FILE__}/../Cellar/homebrew" #rubysucks
+require 'brewkit'
+
+homepage=''
+url=''
+md5='' # leave this blank and brewkit will error out, but show you the md5
+
+Formula.new(url, md5).brew do |prefix|
+ system "./configure --disable-debug --prefix='#{prefix}'"
+ system "make install" # if this fails, split into two steps
+end \ No newline at end of file