homebrew-core/Formula/qscintilla2.rb
2015-12-30 10:47:37 +01:00

94 lines
3.1 KiB
Ruby

class Qscintilla2 < Formula
desc "Port to Qt of the Scintilla editing component"
homepage "https://www.riverbankcomputing.com/software/qscintilla/intro"
url "https://downloads.sf.net/project/pyqt/QScintilla2/QScintilla-2.8.4/QScintilla-gpl-2.8.4.tar.gz"
sha256 "9b7b2d7440cc39736bbe937b853506b3bd218af3b79095d4f710cccb0fabe80f"
bottle do
cellar :any
revision 1
sha256 "4f277db7d148508ed19c15deb5be481a259fb9484f8228b8beef8d5deb62e3e8" => :el_capitan
sha256 "c671e7416f6cb55f7eaf3fabeed866dc0abefe7921470dc592ff515fb1c90bef" => :yosemite
sha256 "372eb0774903e20c4e3bcf67fbebb9ae7b880e5d12729c50e9eca264b2b7c96e" => :mavericks
end
option "without-plugin", "Skip building the Qt Designer plugin"
depends_on :python => :recommended
depends_on :python3 => :optional
if build.with? "python3"
depends_on "pyqt" => "with-python3"
else
depends_on "pyqt"
end
def install
# On Mavericks we want to target libc++, this requires a unsupported/macx-clang-libc++ flag
if ENV.compiler == :clang && MacOS.version >= :mavericks
spec = "unsupported/macx-clang-libc++"
else
spec = "macx-g++"
end
args = %W[-config release -spec #{spec}]
cd "Qt4Qt5" do
inreplace "qscintilla.pro" do |s|
s.gsub! "$$[QT_INSTALL_LIBS]", lib
s.gsub! "$$[QT_INSTALL_HEADERS]", include
s.gsub! "$$[QT_INSTALL_TRANSLATIONS]", "#{prefix}/trans"
s.gsub! "$$[QT_INSTALL_DATA]", "#{prefix}/data"
end
inreplace "features/qscintilla2.prf" do |s|
s.gsub! "$$[QT_INSTALL_LIBS]", lib
s.gsub! "$$[QT_INSTALL_HEADERS]", include
end
system "qmake", "qscintilla.pro", *args
system "make"
system "make", "install"
end
# Add qscintilla2 features search path, since it is not installed in Qt keg's mkspecs/features/
ENV["QMAKEFEATURES"] = "#{prefix}/data/mkspecs/features"
cd "Python" do
Language::Python.each_python(build) do |python, version|
(share/"sip").mkpath
system python, "configure.py", "-o", lib, "-n", include,
"--apidir=#{prefix}/qsci",
"--destdir=#{lib}/python#{version}/site-packages/PyQt4",
"--qsci-sipdir=#{share}/sip",
"--pyqt-sipdir=#{HOMEBREW_PREFIX}/share/sip",
"--spec=#{spec}"
system "make"
system "make", "install"
system "make", "clean"
end
end
if build.with? "plugin"
mkpath prefix/"plugins/designer"
cd "designer-Qt4Qt5" do
inreplace "designer.pro" do |s|
s.sub! "$$[QT_INSTALL_PLUGINS]", "#{lib}/qt4/plugins"
s.sub! "$$[QT_INSTALL_LIBS]", "#{lib}"
end
system "qmake", "designer.pro", *args
system "make"
system "make", "install"
end
end
end
test do
Pathname("test.py").write <<-EOS.undent
import PyQt4.Qsci
assert("QsciLexer" in dir(PyQt4.Qsci))
EOS
Language::Python.each_python(build) do |python, _version|
system python, "test.py"
end
end
end