2011-06-05 05:10:00 +00:00
|
|
|
class Ftjam < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Build tool that can be used as a replacement for Make"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://www.freetype.org/jam/"
|
|
|
|
url "https://downloads.sourceforge.net/project/freetype/ftjam/2.5.2/ftjam-2.5.2.tar.bz2"
|
|
|
|
sha256 "e89773500a92912de918e9febffabe4b6bce79d69af194435f4e032b8a6d66a3"
|
2011-06-05 05:10:00 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
conflicts_with "jam", :because => "both install a `jam` binary"
|
2013-11-07 14:55:47 +00:00
|
|
|
|
2011-06-05 05:10:00 +00:00
|
|
|
def install
|
2012-05-15 21:36:45 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make"
|
|
|
|
system "make", "install"
|
2011-06-05 05:10:00 +00:00
|
|
|
end
|
|
|
|
end
|