homebrew-core/Formula/ttf2pt1.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

20 lines
519 B
Ruby

require 'formula'
class Ttf2pt1 < Formula
homepage 'http://ttf2pt1.sourceforge.net/'
url 'https://downloads.sourceforge.net/ttf2pt1/ttf2pt1-3.4.4.tgz'
sha1 '936771b11a740c16a8e0adb737b54b22cca18cb2'
def patches
# From MacPorts, needed to find free-type on OS X.
{ 'p0' =>
"https://trac.macports.org/export/75341/trunk/dports/print/ttf2pt1/files/patch-ft.c"
}
end
def install
system "make", "all", "INSTDIR=#{prefix}"
bin.install 'ttf2pt1'
man1.install 'ttf2pt1.1'
end
end