blob: bb19c1594225b18c5be3c5059c025d9f04adec05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Ftjam < Formula
homepage 'http://www.freetype.org/jam/'
url 'http://downloads.sourceforge.net/project/freetype/ftjam/2.5.2/ftjam-2.5.2.tar.bz2'
sha1 '08bad35e74ec85c4592d378014586174d22297b5'
def install
system "./configure", "--prefix=#{prefix}"
system 'make'
system 'make install'
end
end
|