88779ade49
Closes Homebrew/homebrew#14653.
14 lines
315 B
Ruby
14 lines
315 B
Ruby
require 'formula'
|
|
|
|
class Cast < Formula
|
|
url 'http://files.cast-project.org/cast-0.2.0.tar.gz'
|
|
homepage 'http://cast-project.org'
|
|
sha1 'ab5e21c69dd0d5d1dc37b2f7d0ba7c52dddce400'
|
|
|
|
depends_on 'scons' => :build
|
|
depends_on 'runit'
|
|
|
|
def install
|
|
system "scons", "install", "CASTPREFIX=#{prefix}"
|
|
end
|
|
end
|