Cattle 1.0.1

Closes Homebrew/homebrew#21575.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Baptiste Fontaine 2013-07-31 23:18:42 +02:00 committed by Adam Vandenberg
parent 956db25c1d
commit 881700c38b
1 changed files with 25 additions and 0 deletions

25
Formula/cattle.rb Normal file
View File

@ -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