aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libutf.rb
diff options
context:
space:
mode:
authorAugie Fackler2011-04-01 00:56:34 -0500
committerJack Nagel2011-09-02 00:04:49 -0500
commitc027cd78402f9ca9b08d385f655800e015eb9fb6 (patch)
tree9d093ea35675f84dda534890d9327bb1297c4d30 /Library/Formula/libutf.rb
parentcdfc11e70e8e40d54600e7a46c0ab9aa3e7b7c1a (diff)
downloadhomebrew-c027cd78402f9ca9b08d385f655800e015eb9fb6.tar.bz2
New formula: libutf
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/libutf.rb')
-rw-r--r--Library/Formula/libutf.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/libutf.rb b/Library/Formula/libutf.rb
new file mode 100644
index 000000000..2c8e651e0
--- /dev/null
+++ b/Library/Formula/libutf.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Libutf < Formula
+ url 'http://swtch.com/plan9port/unix/libutf.tgz'
+ version '1.0'
+ homepage 'http://swtch.com/plan9port/unix/'
+ sha256 '7789326c507fe9c07ade0731e0b0da221385a8f7cd1faa890af92a78a953bf5e'
+
+ def install
+ inreplace 'Makefile', 'man/man7', 'share/man/man7'
+ system "make PREFIX=#{prefix} install"
+ end
+end