New formula for PySideTools

The PySide Tools is a collection of developer utilities for compiling Qt user
interface and resource files for use by PySide applications.
master
Charlie Sharpsteen 2011-06-16 16:48:59 -07:00
parent 1614dbfa4e
commit f63c635dc9
1 changed files with 25 additions and 0 deletions

25
Formula/pyside-tools.rb Normal file
View File

@ -0,0 +1,25 @@
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 PysideTools < Formula
homepage 'http://www.pyside.org'
url 'http://www.pyside.org/files/pyside-tools-0.2.13.tar.bz2'
md5 '14d3a36df06d680357d7bc1960f19a6d'
depends_on 'cmake' => :build
depends_on 'qt'
depends_on 'pyside'
def install
system "cmake . #{std_cmake_parameters} -DSITE_PACKAGE=#{site_package_dir}"
system "make install"
end
end