homebrew-core/Formula/ftjam.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

14 lines
480 B
Ruby

class Ftjam < Formula
desc "Build tool that can be used as a replacement for Make"
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"
conflicts_with "jam", :because => "both install a `jam` binary"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
end