2010-08-29 20:25:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dcal < Formula
|
2010-08-29 20:25:16 +00:00
|
|
|
homepage 'http://alexeyt.freeshell.org/'
|
2013-01-27 22:06:39 +00:00
|
|
|
url 'http://alexeyt.freeshell.org/code/dcal.c'
|
2010-08-29 20:25:16 +00:00
|
|
|
version '0.1.0'
|
2013-01-27 22:06:39 +00:00
|
|
|
sha1 '3b1d4ed45ed0192df4841ed9e371c89fe87bdeac'
|
2010-08-29 20:25:16 +00:00
|
|
|
|
|
|
|
def install
|
2012-05-15 18:47:30 +00:00
|
|
|
system ENV.cxx, "dcal.c", "-o", "dcal"
|
2010-08-29 20:25:16 +00:00
|
|
|
bin.install 'dcal'
|
|
|
|
end
|
|
|
|
end
|