mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* qt5_websockets kde-5.15.15-0231c7c -> kde-5.15.16-a0c1c33 * Add built packages for linux/amd64 to qt5_websockets * Add built packages for linux/arm/v7 to qt5_websockets --------- Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com> Co-authored-by: Zopolis4 <Zopolis4@users.noreply.github.com>
25 lines
802 B
Ruby
25 lines
802 B
Ruby
require 'buildsystems/qmake'
|
|
|
|
class Qt5_websockets < Qmake
|
|
description 'Qt Websockets'
|
|
homepage 'https://www.qt.io/'
|
|
kde_5_15_githash = 'a0c1c335b691ad5ecaddbec17a14dcb2a129a177'
|
|
version "kde-5.15.16-#{kde_5_15_githash[0, 7]}"
|
|
license 'GPL-3'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://invent.kde.org/qt/qt/qtwebsockets.git'
|
|
git_hashtag kde_5_15_githash
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6c4b8e6e3ca79d3d15ac6272152889fd87437c791d198cdc08779a0e7c84bfdd',
|
|
armv7l: '6c4b8e6e3ca79d3d15ac6272152889fd87437c791d198cdc08779a0e7c84bfdd',
|
|
x86_64: '5d6c88ca8bd71bf087c74730514d9203a74ae5f5dffdd4623520f572c4361485'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'qt5_base' # R
|
|
depends_on 'qt5_declarative' # R
|
|
end
|