homebrew-core/Formula/dcal.rb
Jack Nagel 5bd598db36 Use ENV shortcut methods where applicable
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-15 14:03:12 -05:00

13 lines
282 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