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