2020-10-10 14:16:11 +02:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-15 21:28:23 -04:00
|
|
|
class Testball < Formula
|
2020-07-26 07:24:14 +02:00
|
|
|
def initialize(name = "testball", path = Pathname.new(__FILE__).expand_path, spec = :stable,
|
2023-04-18 00:22:13 +01:00
|
|
|
alias_path: nil, tap: nil, force_bottle: false)
|
2013-04-10 12:02:35 -05:00
|
|
|
super
|
2010-03-02 22:54:12 -08:00
|
|
|
end
|
2015-08-03 13:09:07 +01:00
|
|
|
|
2022-08-24 23:52:40 +01:00
|
|
|
DSL_PROC = proc do
|
|
|
|
url "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz"
|
|
|
|
sha256 TESTBALL_SHA256
|
|
|
|
end.freeze
|
|
|
|
private_constant :DSL_PROC
|
|
|
|
|
|
|
|
DSL_PROC.call
|
|
|
|
|
|
|
|
def self.inherited(other)
|
|
|
|
super
|
|
|
|
other.instance_eval(&DSL_PROC)
|
|
|
|
end
|
|
|
|
|
2010-03-02 22:54:12 -08:00
|
|
|
def install
|
|
|
|
prefix.install "bin"
|
|
|
|
prefix.install "libexec"
|
2016-01-17 17:17:42 -08:00
|
|
|
Dir.chdir "doc"
|
2010-03-02 22:54:12 -08:00
|
|
|
end
|
|
|
|
end
|