blob: 02540aa91c6c0ef121337cecdb0cfb51e833f26e (
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
  | 
require "formula"
class Hh < Formula
  homepage "https://github.com/dvorka/hstr"
  url "https://github.com/dvorka/hstr/releases/download/1.13/hh-1.13-src.tgz"
  sha1 "09fee6d687a8b8a7c6f508ced071fb88b0a9bb28"
  bottle do
    cellar :any
    sha1 "3110fabac2e10d0bd49f0893a9bff1babf8ad4d3" => :yosemite
    sha1 "9e7f8e5fab6fdfb0151eb426a97187e7abeb8519" => :mavericks
    sha1 "e31eebb154535a7fc7e35a498178e1163068e4fb" => :mountain_lion
  end
  head do
    url "https://github.com/dvorka/hstr.git"
    depends_on "autoconf" => :build
    depends_on "automake" => :build
    depends_on "libtool" => :build
  end
  depends_on "readline"
  def install
    # Upstream bug report for curses/ncursesw:
    # https://github.com/dvorka/hstr/issues/103
    if build.head?
      inreplace %w(src/hstr.c src/include/hstr_curses.h), "ncursesw/", ""
      system "autoreconf", "-fvi"
    end
    inreplace "configure", "ncursesw", "ncurses"
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make", "install"
  end
  test do
    path = testpath/".hh_test"
    path.write "test\n"
    ENV["HISTFILE"] = path
    assert_equal "test\n", `#{bin}/hh -n`
  end
end
  |