homebrew-core/Formula/ctail.rb
Max Howell a2dbc590d1 superenv fix for broken 10.8 apr-1-config
serf requires you to explicitly tell it where to find the supertool because otherwise it has a hardcoded /usr/bin/apr-1-config (:P), ctail however is sensible and searches the PATH so now it's as though we do nothing special in that formula. Nice.
2012-08-31 13:29:45 -04:00

16 lines
386 B
Ruby

require 'formula'
class Ctail < Formula
homepage 'http://ctail.i-want-a-pony.com/'
url 'http://ctail.i-want-a-pony.com/downloads/ctail-0.1.0.tar.bz2'
sha1 '4bd0373df88136b48cac721c98d34cefda27aff9'
depends_on :automake
depends_on :libtool
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system 'make'
system 'make install'
end
end