blob: efd6ad155b20c202c6c1089bf95771d0460e0ab7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
require "formula"
require "language/go"
class ThePlatinumSearcher < Formula
homepage "https://github.com/monochromegane/the_platinum_searcher"
url "https://github.com/monochromegane/the_platinum_searcher/archive/v1.7.4.tar.gz"
sha1 "564bb95672a927802e0beab42af42d6f52d8e5ec"
head "https://github.com/monochromegane/the_platinum_searcher.git"
go_resource "github.com/jessevdk/go-flags" do
url "https://github.com/jessevdk/go-flags.git",
:revision => "7047cf7a8dc6f41e53365420ab62d415055232c6"
end
go_resource "github.com/monochromegane/terminal" do
url "https://github.com/monochromegane/terminal.git",
:revision => "6d255869fb99937f1f287bd1fe3a034c6c4f68f6"
end
go_resource "github.com/shiena/ansicolor" do
url "https://github.com/shiena/ansicolor.git",
:revision => "6046e7d18a7698e98846e5d25842e9cf15aecf2c"
end
go_resource "code.google.com/p/go.text" do
url "https://code.google.com/p/go.text", :using => :hg,
:revision => "46250cb715a27b42c736a5ff2a4e6fa0b2118952"
end
depends_on "go" => :build
bottle do
sha1 "08e96e5bc7fc7ccc623341febf7cbba3bd7282de" => :mavericks
sha1 "68b802bc18dc403c6f018966cc0e04de302bbe1c" => :mountain_lion
sha1 "fbdf23fc9f9a26d58cb34fc79fc2f4451b0cab64" => :lion
end
def install
# configure buildpath for local dependencies
mkdir_p buildpath/"src/github.com/monochromegane"
ln_s buildpath, buildpath/"src/github.com/monochromegane/the_platinum_searcher"
ENV["GOPATH"] = buildpath
Language::Go.stage_deps resources, buildpath/"src"
system "go", "build", "-o", "pt", "cmd/pt/main.go"
bin.install "pt"
end
test do
path = testpath/"hello_world.txt"
path.write "Hello World!"
lines = `#{bin}/pt 'Hello World!' #{path}`.strip.split(":")
assert_equal "Hello World!", lines[2]
end
end
|