homebrew-core/Formula/dcal.rb
Ferdinand Niedermann 1798f74884 new formula: dcal
Signed-off-by: David Höppner <0xffea@gmail.com>

* use standard CXX
2010-08-30 20:16:54 +02:00

13 lines
289 B
Ruby

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