aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/testball.rb
blob: 6393342e5979503853cee097e9f30ae9ddaecb78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class TestBall <Formula
  # name parameter required for some Formula::factory
  def initialize name=nil
    @url="file:///#{TEST_FOLDER}/testball-0.1.tbz"
    @homepage = 'http://example.com/'
    super "testball"
  end
  def install
    prefix.install "bin"
    prefix.install "libexec"
  end
end