blob: 29477b2c3f424ced5ef406f4ba9003ed012c640c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
  |