2011-02-17 18:49:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libtrace < Formula
|
2011-02-17 18:49:18 +00:00
|
|
|
homepage 'http://research.wand.net.nz/software/libtrace.php'
|
2013-07-16 21:29:08 +00:00
|
|
|
url 'http://research.wand.net.nz/software/libtrace/libtrace-3.0.18.tar.bz2'
|
|
|
|
sha1 '91003fefe014d92cccc3e6c0b3d82b21a9bfdf48'
|
2011-02-17 18:49:18 +00:00
|
|
|
|
|
|
|
def install
|
2011-09-16 23:37:41 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2011-02-17 18:49:18 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|