aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorFerdinand Niedermann2010-08-29 22:25:16 +0200
committerDavid Höppner2010-08-30 20:16:54 +0200
commit184d117992dee698df1cd7fc0643aef9131c3b8c (patch)
tree07e0629ef5fa8c9d31c4142e8de3e42f52c60673 /Library/Formula
parentba9ab9f530ee8afdafa3153348a13ea89bc41052 (diff)
downloadhomebrew-184d117992dee698df1cd7fc0643aef9131c3b8c.tar.bz2
new formula: dcal
Signed-off-by: David Höppner <0xffea@gmail.com> * use standard CXX
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dcal.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/dcal.rb b/Library/Formula/dcal.rb
new file mode 100644
index 000000000..15141c206
--- /dev/null
+++ b/Library/Formula/dcal.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Dcal <Formula
+ url 'http://alexeyt.freeshell.org/code/dcal.c'
+ homepage 'http://alexeyt.freeshell.org/'
+ md5 '66e6abfccf934cf1e7fb8e467cc8f005'
+ version '0.1.0'
+
+ def install
+ system "#{ENV['CXX']}", "dcal.c", "-o", "dcal"
+ bin.install 'dcal'
+ end
+end