homebrew-core/Formula/qscintilla2.rb
2018-03-05 02:44:43 -08:00

96 lines
3.5 KiB
Ruby

class Qscintilla2 < Formula
desc "Port to Qt of the Scintilla editing component"
homepage "https://www.riverbankcomputing.com/software/qscintilla/intro"
url "https://dl.bintray.com/homebrew/mirror/qscintilla2-2.10.3.tar.gz"
mirror "https://downloads.sourceforge.net/project/pyqt/QScintilla2/QScintilla-2.10.3/QScintilla_gpl-2.10.3.tar.gz"
sha256 "d2657a68e7699d37209ff97db965de7c67884d99b33066d0ba457e6f39b581e7"
bottle do
cellar :any
sha256 "b8bebd4e23df01914dc3acf908cd919eca071900a7f5e8d5e98ccfa32f3ca5db" => :high_sierra
sha256 "d6f9f44899525e5b8b4bdbe37df4973d2f4889d9183e0a7fde0f161a2650ab6b" => :sierra
sha256 "b4e7f9645bbf4c91987a492bf7a05bf1b25094827b4a59bcc304e4bc4aee6676" => :el_capitan
end
option "with-plugin", "Build the Qt Designer plugin"
option "without-python", "Do not build Python3 bindings"
option "without-python@2", "Do not build Python2 bindings"
depends_on "pyqt"
depends_on "qt"
depends_on "sip"
depends_on "python" => :recommended
depends_on "python@2" => :recommended
def install
spec = (ENV.compiler == :clang && MacOS.version >= :mavericks) ? "macx-clang" : "macx-g++"
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"
s.gsub! "$$[QT_HOST_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"
if build.with?("python") || build.with?("python@2")
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/PyQt5",
"--stubsdir=#{lib}/python#{version}/site-packages/PyQt5",
"--qsci-sipdir=#{share}/sip",
"--qsci-incdir=#{include}",
"--qsci-libdir=#{lib}",
"--pyqt=PyQt5",
"--pyqt-sipdir=#{Formula["pyqt"].opt_share}/sip/Qt5",
"--sip-incdir=#{Formula["sip"].opt_include}",
"--spec=#{spec}"
system "make"
system "make", "install"
system "make", "clean"
end
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}/qt/plugins"
s.sub! "$$[QT_INSTALL_LIBS]", lib
end
system "qmake", "designer.pro", *args
system "make"
system "make", "install"
end
end
end
test do
(testpath/"test.py").write <<~EOS
import PyQt5.Qsci
assert("QsciLexer" in dir(PyQt5.Qsci))
EOS
Language::Python.each_python(build) do |python, _version|
system python, "test.py"
end
end
end