Files
chromebrew/packages/qt5_declarative.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* 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)
2024-01-25 11:03:31 -05:00

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