blob: 3f17cf1fd040ba897b425e89183e61b45266f14d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
require 'formula'
class Cast < Formula
  url 'http://files.cast-project.org/cast-0.2.0.tar.gz'
  homepage 'http://cast-project.org'
  md5 'b6a4f2b1126e969ee1696f50471c7345'
  depends_on 'scons' => :build
  depends_on 'runit'
  def install
    system "scons", "install", "CASTPREFIX=#{prefix}"
  end
end
  |