blob: 97cc0247ec50e0222baf04f5a0aa848fc19d9c0b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | require "formula"
class Unshield < Formula
  homepage "https://github.com/twogood/unshield"
  url "https://github.com/twogood/unshield/archive/1.0.tar.gz"
  sha1 "b9e09a23d7172dc43c914b764470aec182e4f468"
  depends_on "autoconf" => :build
  depends_on "automake" => :build
  depends_on "libtool" => :build
  def install
    system "./bootstrap"
    system "./configure", "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--prefix=#{prefix}"
    system "make", "install"
  end
end
 |