homebrew-core/Formula/rock.rb
Amos Wenger 22b6119a03 rock: fix SHA1
The rock maintainers (guilty..) released a late fix to the 0.9.6 release, and the SHA1 hash has changed. Without this fix, rock fails to install.

Closes Homebrew/homebrew#21785.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-09 13:33:34 -07:00

22 lines
583 B
Ruby

require 'formula'
class Rock < Formula
homepage 'http://ooc-lang.org'
url 'https://github.com/nddrylliog/rock/archive/v0.9.6.tar.gz'
sha1 'c92bda98b94026fd493b1b0e46db62dc69459848'
head 'https://github.com/nddrylliog/rock.git'
depends_on 'bdw-gc'
def install
# make rock using provided bootstrap
system "make rescue"
bin.install 'bin/rock'
man1.install "docs/rock.1"
# install misc authorship files & rock binary in place
# copy the sdk, libs and docs
prefix.install "rock.use", 'README.md', "sdk", "libs", "docs"
end
end