blob: 57a14ad5080186aa97fe6dff705e0bb0ea628700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 :autoconf
depends_on :automake
depends_on :libtool
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system 'make', 'LIBTOOL=glibtool --tag=CC'
system 'make install'
end
end
|