aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dcal.rb
blob: 3d58ac9561792651946a8ee02d8eec1373271490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Dcal < Formula
  homepage 'http://alexeyt.freeshell.org/'
  url 'http://alexeyt.freeshell.org/code/dcal.c'
  version '0.1.0'
  sha1 '3b1d4ed45ed0192df4841ed9e371c89fe87bdeac'

  def install
    system ENV.cxx, "dcal.c", "-o", "dcal"
    bin.install 'dcal'
  end
end