blob: 724c58c6e8f2763d9850c72dd62dfbdac471d830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|