aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Arthur2009-09-09 20:50:13 +0100
committerMax Howell2009-09-11 17:42:53 +0100
commit47fcaf8233bd3e2508630e6d645a2e85d6fcca0f (patch)
tree0b285d23c66f2f3b466140bc37862dada45af77e /Library/Formula
parentbb14c486da08f1e4788974715d4683723858d282 (diff)
downloadhomebrew-47fcaf8233bd3e2508630e6d645a2e85d6fcca0f.tar.bz2
Freedesktop.org intltool formula
intltool is a set of tools to centralize translation of many different file formats using GNU gettext-compatible PO files.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/intltool.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/intltool.rb b/Library/Formula/intltool.rb
new file mode 100644
index 000000000..1d7af988c
--- /dev/null
+++ b/Library/Formula/intltool.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class Intltool <Formula
+ @url='http://edge.launchpad.net/intltool/trunk/0.41.0/+download/intltool-0.41.0.tar.gz'
+ @homepage='http://www.freedesktop.org/wiki/Software/intltool'
+ @md5='8a6e4afd3fc93637dcd70e36ab899364'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end