diff options
| author | Baptiste Fontaine | 2013-07-31 23:18:42 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-11-14 08:05:32 -0800 | 
| commit | 0597030a66a2dc91a2425f140533d33d06a3f3be (patch) | |
| tree | 49735d38ab7628a5bdf309be1d7c57c9c1e3eb90 | |
| parent | 91d8e9df8b44a9d04b343702e97016011f942dfe (diff) | |
| download | homebrew-0597030a66a2dc91a2425f140533d33d06a3f3be.tar.bz2 | |
Cattle 1.0.1
Closes #21575.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/cattle.rb | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/Library/Formula/cattle.rb b/Library/Formula/cattle.rb new file mode 100644 index 000000000..1f223c52f --- /dev/null +++ b/Library/Formula/cattle.rb @@ -0,0 +1,25 @@ +require 'formula' + +class Cattle < Formula +  homepage 'https://github.com/andreabolognani/cattle#readme' +  url 'https://github.com/andreabolognani/cattle/archive/cattle-1.0.1.tar.gz' +  sha1 '1c60cdf8dc6b2b27bd4dfb79adea905a22e033c2' + +  depends_on 'glib' +  depends_on 'gobject-introspection' +  depends_on 'gtk-doc' => :build +  depends_on 'pkg-config' => :build + +  depends_on :autoconf => :build +  depends_on :automake => :build +  depends_on :libtool => :build + +  def install +    inreplace 'autogen.sh', 'libtoolize', 'glibtoolize' + +    system 'sh autogen.sh' +    system "./configure", "--disable-dependency-tracking", +                          "--prefix=#{prefix}" +    system "make", "install" +  end +end | 
