homebrew-core/Formula/ftjam.rb
2015-06-05 14:47:57 +01:00

16 lines
470 B
Ruby

require 'formula'
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'
sha1 '08bad35e74ec85c4592d378014586174d22297b5'
conflicts_with 'jam', :because => 'both install a `jam` binary'
def install
system "./configure", "--prefix=#{prefix}"
system 'make'
system 'make install'
end
end