2011-04-01 05:56:34 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libutf < Formula
|
|
|
|
homepage 'http://swtch.com/plan9port/unix/'
|
2012-09-06 14:53:28 +00:00
|
|
|
url 'http://swtch.com/plan9port/unix/libutf-20110530.tgz'
|
2011-04-01 05:56:34 +00:00
|
|
|
sha256 '7789326c507fe9c07ade0731e0b0da221385a8f7cd1faa890af92a78a953bf5e'
|
|
|
|
|
|
|
|
def install
|
2012-09-06 14:53:28 +00:00
|
|
|
# Make.Darwin-386 is the only Makefile they have
|
|
|
|
inreplace 'Makefile' do |f|
|
|
|
|
f.gsub! 'man/man7', 'share/man/man7'
|
|
|
|
f.gsub! 'Make.$(SYSNAME)-$(OBJTYPE)', 'Make.Darwin-386'
|
|
|
|
end
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "PREFIX=#{prefix}", "install"
|
2011-04-01 05:56:34 +00:00
|
|
|
end
|
|
|
|
end
|