a2dbc590d1
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.
16 lines
386 B
Ruby
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
|