6bf3763dec
Compiling against system Python does not work; a Homebrewed version is currently required. Suggest that users of the Python bindings add a `--python` option that sets the proper configure flags. Closes Homebrew/homebrew#13097.
15 lines
378 B
Ruby
15 lines
378 B
Ruby
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
|