97 lines
3.4 KiB
Ruby
97 lines
3.4 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.sourceforge.net/project/pyqt/QScintilla2/QScintilla-2.10.2/QScintilla_gpl-2.10.2.tar.gz"
|
|
sha256 "14b31d20717eed95ea9bea4cd16e5e1b72cee7ebac647cba878e0f6db6a65ed0"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "da1d93ad1371f8cbe0f3897a49afae8c07a41c06ae250b74c580c8be7ce83113" => :high_sierra
|
|
sha256 "7b45fdb79ba8c1fce4ff5745881ea4786801d2bf8d2c06d3d34823d3c0a9d9f0" => :sierra
|
|
sha256 "5dbae892c1f20a559477d72106cb7a6a1f20330b0b5a6054f1198795b940b4f8" => :el_capitan
|
|
end
|
|
|
|
option "with-plugin", "Build the Qt Designer plugin"
|
|
option "without-python", "Do not build Python bindings"
|
|
option "without-python3", "Do not build Python3 bindings"
|
|
|
|
depends_on "pyqt"
|
|
depends_on "qt"
|
|
depends_on "sip"
|
|
depends_on "python" => :recommended
|
|
depends_on "python3" => :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?("python3")
|
|
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
|