blob: dd3c1832816a138bffccdb9accaf35b292c45ac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# Maintainer: Echo J. <aidas957 at gmail dot com>
# Contributor: Ckat <ckat@teknik.io>
# shellcheck shell=bash disable=SC2034,SC2164
# A modified version of the chatterino2-git package (https://aur.archlinux.org/packages/chatterino2-git)
pkgname=chatterino2
pkgver=2.5.3
pkgrel=1
pkgdesc='Second installment of the Twitch chat client series "Chatterino"'
arch=('x86_64')
url=https://chatterino.com
license=('MIT')
depends=('gdk-pixbuf2' 'glib2' 'hicolor-icon-theme' 'libnotify' 'openssl' 'qt6-5compat'
'qt6-base' 'qt6-imageformats' 'qt6-svg' 'qtkeychain-qt6')
makedepends=('boost' 'cmake' 'git' 'python3' 'qt6-tools' 'rapidjson')
optdepends=('streamlink: For piping streams to video players'
'pulseaudio: For audio output')
checkdepends=('httpbin' 'pifpaf')
provides=('chatterino')
conflicts=('chatterino')
install="${pkgname}.install"
source=("git+https://github.com/Chatterino/${pkgname}.git#tag=v${pkgver}"
"git+https://github.com/Chatterino/libcommuni.git#commit=2979eb96262756047a8dca47f2e509168138c0d0" # Current chatterino-cmake commit
"git+https://github.com/Chatterino/websocketpp.git#commit=f1736a8e72b910810ff6869fe20f647a62f3bc35" # Current chatterino commit
"git+https://github.com/pajlada/settings.git#commit=c141a40d2d493646cd8f0b1e06251a828dfdfdd2" # v0.3.0 release
"git+https://github.com/pajlada/signals.git#commit=d06770649a7e83db780865d09c313a876bf0f4eb" # v0.1.0 is missing a GCC 14 fix
"git+https://github.com/pajlada/serialize.git#commit=17946d65a41a72b447da37df6e314cded9650c32"
"git+https://github.com/Neargye/magic_enum.git#tag=v0.9.7"
"git+https://github.com/mackron/miniaudio.git#tag=0.11.22"
"git+https://github.com/ThePhD/sol2.git#tag=v3.3.1"
"git+https://github.com/arsenm/sanitizers-cmake.git#commit=9689dd8f05e16deb3f3116916109edf2cce6f29a"
"git+https://github.com/lua/lua.git#tag=v5.4.7")
sha256sums=('0ce448c0e6c2fbaeb7b91f3e0a2da66562277ec5dc32958cdfe5831d72f5d851'
'd9c6ad75a70f1d8463e8992fbc5ef0d45c78d33c37ede4d572499a607424e764'
'd50966ad9cccfba81208ed08c2633054050e64ba3f90c8c0c88b5bd07f8d8f0f'
'862a07e96dea7ab2a8484688add61156b6fb925992489be927b914b898e05204'
'd2c209441de8e5f7043bb5f57f5efb01d9e3affdf3b293d37a8dc236a6d29f06'
'2720af5b86830c88c3c18f4760ec13fd3135cb57c4052075644d2423ef9a2076'
'35e3ccee2fe02c2a666680aa00982e1d6593de440b8be04a04d399dd97c3e78c'
'ea102d1857e87f6ac56d2c9064e9afabcd3c314965d1ab5d82d52190f58944dc'
'8bb9a8d32d3ddb6c6aa30daec0c851e7e66758b31cb76c5ba94f334adfc953ba'
'971b20795b58e27c0f9879fcc3e2a9b578f46d72b25b6f904e7a3149a61f7747'
'54418e9820f5943c676a8f4be44061c4a9e5e698a5a33c2e856c7b8e1f3735d5')
# We temporarily disable LTO since we get an ICE when compiling with gcc since this commit https://github.com/Chatterino/chatterino2/commit/ed20e71db4c957d3b2a8ce9350b847f4c805cb83
# Bug report tracking https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114501
options=('!lto')
# websocketpp hack for dirty build
if grep -q "zaphoyd" websocketpp/config; then
git -C websocketpp remote set-url origin "https://github.com/Chatterino/websocketpp.git"
fi
prepare() {
declare -A _submodules=(
[libcommuni]=""
[websocketpp]=""
[settings]=""
[signals]=""
[serialize]=""
[magic_enum]=""
[miniaudio]=""
[sol2]=""
[sanitizers-cmake]="cmake/sanitizers-cmake"
[lua]="lib/lua/src"
)
cd "${pkgname}"
# Initialize the submodules with local repository clones
git submodule init
for module in "${!_submodules[@]}"; do
[ -z "${_submodules[${module}]}" ] && _modpath="lib/${module}" || _modpath="${_submodules[${module}]}"
git config "submodule.${_modpath}.url" "${srcdir}/${module}"
done
git -c protocol.file.allow=always \
-c submodule.lib/rapidjson.update=none \
-c submodule.tools/crash-handler.update=none \
submodule update
# Make sure submodules are updated inside the main repository (similar to extract_git() function)
for module in "${!_submodules[@]}"; do
[ -z "${_submodules[${module}]}" ] && _modpath="lib/${module}" || _modpath="${_submodules[${module}]}"
git -C "${_modpath}" fetch origin
git -C "${_modpath}" reset --hard origin/HEAD
done
}
build() {
cmake -S "${pkgname}" -B build --fresh \
-DCMAKE_CXX_FLAGS="${CXXFLAGS} -DNDEBUG" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DUSE_SYSTEM_QTKEYCHAIN=ON \
-DBUILD_TESTS=ON \
-DCHATTERINO_UPDATER=OFF \
-DCHATTERINO_PLUGINS=ON \
-DINSTALL_GTEST=OFF
cmake --build build
}
check() {
eval `pifpaf run httpbin --port 9051`
ctest --test-dir build --output-on-failure || : # TODO: Pass the PubSub tests
pifpaf_stop
}
package() {
DESTDIR="${pkgdir}" cmake --install build
install -Dm644 "${pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|