aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlex Morega2011-07-07 16:17:27 +0300
committerAdam Vandenberg2011-08-13 09:03:25 -0700
commit934edd1a7e4847b86c82d84c92ac9ffd26692522 (patch)
tree998f82818b83bcf9ffaa639460e7ea6105ab03d0 /Library
parent04527a984047f28ad6791f062f4a2c12c3a79d64 (diff)
downloadhomebrew-934edd1a7e4847b86c82d84c92ac9ffd26692522.tar.bz2
libpst 0.6.53
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libpst.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libpst.rb b/Library/Formula/libpst.rb
new file mode 100644
index 000000000..29477b2c3
--- /dev/null
+++ b/Library/Formula/libpst.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Libpst < Formula
+ url 'http://www.five-ten-sg.com/libpst/packages/libpst-0.6.53.tar.gz'
+ homepage 'http://www.five-ten-sg.com/libpst/'
+ md5 'e030d3128562ac189c2400dedec36b86'
+
+ depends_on 'boost'
+
+ def install
+ system "./configure", "--prefix=#{prefix}",
+ "--mandir=#{man}",
+ "--with-boost-python=boost_python-mt"
+ system "make install"
+ end
+end