2015-04-15 21:28:23 -04:00
|
|
|
class Testball < Formula
|
2015-04-28 01:39:28 -04:00
|
|
|
def initialize(name="testball", path=Pathname.new(__FILE__).expand_path, spec=:stable)
|
2013-04-08 17:43:01 -05:00
|
|
|
self.class.instance_eval do
|
2015-04-28 22:37:27 -04:00
|
|
|
stable.url "file://#{File.expand_path("..", __FILE__)}/tarballs/testball-0.1.tbz"
|
2014-03-03 15:04:23 -06:00
|
|
|
stable.sha1 "482e737739d946b7c8cbaf127d9ee9c148b999f5"
|
2013-04-08 17:43:01 -05:00
|
|
|
end
|
2013-04-10 12:02:35 -05:00
|
|
|
super
|
2010-03-02 22:54:12 -08:00
|
|
|
end
|
|
|
|
def install
|
|
|
|
prefix.install "bin"
|
|
|
|
prefix.install "libexec"
|
|
|
|
end
|
|
|
|
end
|