aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDan Larkin2010-09-20 11:33:34 -0400
committerAdam Vandenberg2010-09-20 09:22:07 -0700
commit44bcb2fdafc004120c5c1dfeb7d67b68b4c59916 (patch)
tree06f286d414fe581c2ec5180f85c6e95708aa23c9 /Library/Formula
parent5f66141e64c5e2f2c0f50d8a3b53238b2f31bcb9 (diff)
downloadhomebrew-44bcb2fdafc004120c5c1dfeb7d67b68b4c59916.tar.bz2
New Formula: readpst
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/readpst.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/readpst.rb b/Library/Formula/readpst.rb
new file mode 100644
index 000000000..8ab002606
--- /dev/null
+++ b/Library/Formula/readpst.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Readpst <Formula
+ url 'http://www.five-ten-sg.com/libpst/packages/libpst-0.6.49.tar.gz'
+ homepage 'http://www.five-ten-sg.com/libpst/'
+ md5 'a0a0f927e82ab14bb042bd8bbd97c312'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}", "--mandir=#{man}",
+ "--disable-python"
+ system "make"
+ ENV.j1 # Install is not parallel-safe
+ system "make install"
+ end
+end