Files
chromebrew/packages/wireshark.rb
github-actions[bot] 86615ad728 AutoBuild: update-wireshark started at 2025-01-09-14UTC (#11111)
* Wireshark 4.2.3 => 4.4.3

* Add built packages for linux/386 to update-wireshark

* Update wireshark.rb

* Add built packages for linux/amd64 to update-wireshark

* Add built packages for linux/arm/v7 to update-wireshark

---------

Co-authored-by: Ed Reel <edreel@gmail.com>
Co-authored-by: uberhacker <uberhacker@users.noreply.github.com>
Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
2025-01-09 18:23:47 +00:00

64 lines
1.9 KiB
Ruby

# Adapted from Arch Linux wireshark PKGBUILD at:
# https://github.com/archlinux/svntogit-community/raw/packages/wireshark/trunk/PKGBUILD
require 'buildsystems/cmake'
class Wireshark < CMake
description 'Network traffic and protocol analyzer/sniffer'
homepage 'https://www.wireshark.org/'
version '4.4.3'
license 'GPL-2'
compatibility 'all'
source_url 'https://github.com/wireshark/wireshark.git'
git_hashtag "wireshark-#{version}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'ca6d2ac8b8bc39613d729de96ee58c4faf455f03a96a4fcba80cb15e7924d45a',
armv7l: 'ca6d2ac8b8bc39613d729de96ee58c4faf455f03a96a4fcba80cb15e7924d45a',
i686: '5b0700fb97ce474fedb1edefb347653c5844457f45ce51059e4c6bde14768fa9',
x86_64: '9eabcc620b4c96c545a580ef6263f6cf1fa699063e1bd7292805a1ebd69daf40'
})
depends_on 'brotli' # R
depends_on 'c_ares' # R
depends_on 'e2fsprogs' # R
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
depends_on 'glib' # R
depends_on 'gnutls' # R
depends_on 'krb5' # R
depends_on 'libcap' # R
depends_on 'libgcrypt' # R
depends_on 'libgpg_error' # R
depends_on 'libmaxminddb' # R
depends_on 'libnghttp2' # R
depends_on 'libnl3' # R
depends_on 'libopencoreamr' # R
depends_on 'libpcap' # R
depends_on 'libsmi' # R
depends_on 'libssh' # R
depends_on 'libxml2' # R
depends_on 'lz4' # R
depends_on 'minizip' # R
depends_on 'opus' # R
depends_on 'pcre2' # R
depends_on 'qt5_base' unless ARCH == 'i686'
depends_on 'qt5_multimedia' unless ARCH == 'i686'
depends_on 'qt5_svg' unless ARCH == 'i686'
depends_on 'qt5_tools' unless ARCH == 'i686'
depends_on 'ruby_asciidoctor' => :build
depends_on 'sbc' # R
depends_on 'snappy' # R
depends_on 'speexdsp' # R
depends_on 'zlib' # R
depends_on 'zstd' # R
git_fetchtags
pre_cmake_options 'WIRESHARK_BUILD_WITH_QT5=1'
cmake_options "-DENABLE_LTO=true \
-DBUILD_wireshark=#{ARCH == 'i686' ? 'false' : 'true'} \
-DUSE_qt6=OFF"
end