blob: aa71e6e612a9f65ae97fa3cef4d423c9d81ff9eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Libpst < Formula
  homepage 'http://www.five-ten-sg.com/libpst/'
  url 'http://www.five-ten-sg.com/libpst/packages/libpst-0.6.54.tar.gz'
  sha1 'a4713b87e330556acb0786b4efa975a3c739cd84'
  depends_on 'boost'
  def install
    system "./configure", "--prefix=#{prefix}",
                          "--disable-python"
    system "make install"
  end
end
  |