mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -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
699 B
Ruby
21 lines
699 B
Ruby
require 'buildsystems/qmake'
|
|
|
|
class Qt5_networkauth < Qmake
|
|
description 'Qt Network Authentication'
|
|
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/qtnetworkauth.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f94b79f92aee598dcdd6e27eb157dfae0e3f8f563e4f6eba0a7070828d6a6c24',
|
|
armv7l: 'f94b79f92aee598dcdd6e27eb157dfae0e3f8f563e4f6eba0a7070828d6a6c24',
|
|
x86_64: '445b9996d014044fe3bd3b369161c9067cd5e7937873b665c3d1499e7f557b50'
|
|
})
|
|
|
|
depends_on 'qt5_base' # R
|
|
end
|