mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
21 lines
689 B
Ruby
21 lines
689 B
Ruby
require 'buildsystems/qmake'
|
|
|
|
class Qt5_xmlpatterns < Qmake
|
|
description 'Qt XML Patterns'
|
|
homepage 'https://www.qt.io/'
|
|
version '5.15.11-lts-lgpl'
|
|
license 'FDL, GPL-2, GPL-3, GPL-3-with-qt-exception, LGPL-2.1 and LGPL-3'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://invent.kde.org/qt/qt/qtxmlpatterns.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6d02261468a54794314b55e9ffdd84ebba62c66b4f44a5d3339fc264ec61c564',
|
|
armv7l: '6d02261468a54794314b55e9ffdd84ebba62c66b4f44a5d3339fc264ec61c564',
|
|
x86_64: 'a2b20fd168f685d8dd85f3a0fe4fe66c8f7c057776382571ee19e5994a326226'
|
|
})
|
|
|
|
depends_on 'qt5_base' # R
|
|
end
|