diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dcal.rb | 13 |
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 |
