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)
24 lines
831 B
Ruby
24 lines
831 B
Ruby
require 'buildsystems/qmake'
|
|
|
|
class Qt5_declarative < Qmake
|
|
description 'Provides QML and Quick declaratives.'
|
|
homepage 'https://www.qt.io/'
|
|
version '5.15.11-1b0e366'
|
|
license 'FDL, GPL-2, GPL-3, GPL-3-with-qt-exception and LGPL-3'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://invent.kde.org/qt/qt/qtdeclarative.git'
|
|
git_hashtag '1b0e366092bcfae0392592c3b7891f0e47af1018' # from kde/5.15 branch
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '72f6b2fcd92fa1a52972c9d6ddacb6c8453b61b5ce3767d93a3aa7a72aedc486',
|
|
armv7l: '72f6b2fcd92fa1a52972c9d6ddacb6c8453b61b5ce3767d93a3aa7a72aedc486',
|
|
x86_64: 'efb6a6eb5bce1b11dab4d35c5a8855efef2d432b06f24e97fce7e697654add90'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libglvnd' # R
|
|
depends_on 'qt5_base' # R
|
|
end
|