blob: 6c50570f112ae2af9b4a646dff6bd9d969ee945b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
require 'formula'
def which_python
"python" + `python -c 'import sys;print(sys.version[:3])'`.strip
end
def site_package_dir
"lib/#{which_python}/site-packages"
end
class Pyside < Formula
homepage 'http://www.pyside.org'
url 'http://www.pyside.org/files/pyside-qt4.7+1.1.0.tar.bz2'
md5 '233f0c6d2b3daf58cf88877d7f74557b'
depends_on 'cmake' => :build
depends_on 'shiboken'
def install
# The build will be unable to find Qt headers buried inside frameworks
# unless the folder containing those frameworks is added to the compiler
# search path.
qt = Formula.factory 'qt'
ENV.append_to_cflags "-F#{qt.prefix}/Frameworks"
# Also need `ALTERNATIVE_QT_INCLUDE_DIR` to prevent "missing file" errors.
args = std_cmake_parameters.split + %W[
-DALTERNATIVE_QT_INCLUDE_DIR=#{qt.prefix}/Frameworks
-DSITE_PACKAGE=#{site_package_dir}
-DBUILD_TESTS=NO
.]
system "cmake", *args
system 'make install'
end
def caveats
<<-EOS
PySide Python modules have been linked to:
#{HOMEBREW_PREFIX}/#{site_package_dir}
Make sure this folder is on your PYTHONPATH. For PySide development tools,
install the `pyside-tools` formula.
EOS
end
end
|