blob: 6b2874e2bc6bc30573d6a938053d80687d3c38cf (
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
# Maintainer:
# Contributor: westpain <homicide@disroot.org>
# Contributor: rikki48 <xdxdxdxdlmao@mail.ru>
## options
: ${_use_sodeps:=false}
: ${_branch:=dev}
: ${_commit=}
_pkgname="ayugram-desktop"
pkgname="$_pkgname-git"
pkgver=6.3.10.r3.g1f6806d
pkgrel=3
pkgdesc="Desktop Telegram client with good customization and Ghost mode"
url="https://github.com/AyuGram/AyuGramDesktop"
license=('GPL-3.0-or-later')
arch=('x86_64' 'aarch64')
depends=(
ada
ffmpeg
hunspell
kcoreaddons
libavif
libdispatch
libheif
libjxl
libvpx
libxdamage
minizip
openal
openh264
opus
protobuf
qt6-base
qt6-declarative
qt6-svg
qt6-wayland
rnnoise
xcb-util-keysyms
xxhash
## for libtg_owt
libpipewire
libxcomposite
libxrandr
libxtst
)
makedepends=(
boost
boost-libs
cmake
extra-cmake-modules
fmt
git
glib2-devel
gobject-introspection
gperf # for tdlib
jemalloc # gio error when absent
libtg_owt
ninja
range-v3
tl-expected
)
optdepends=(
'webkit2gtk: embedded browser features'
'xdg-desktop-portal: desktop integration'
)
provides=("$_pkgname")
conflicts=("$_pkgname")
options=('!lto')
_pkgsrc="$_pkgname"
_pkgsrc_tdlib="telegram-tdlib"
source=(
"$_pkgsrc"::"git+$url.git${_commit:+#commit=$_commit}${_commit:-${_branch:+#branch=$_branch}}"
"$_pkgsrc_tdlib"::"git+https://github.com/tdlib/td.git"
)
sha256sums=(
'SKIP'
'SKIP'
)
prepare() {
cd "$_pkgsrc"
git rm -r 'Telegram/ThirdParty/dispatch'
git rm -r 'Telegram/ThirdParty/range-v3'
git rm -r 'Telegram/ThirdParty/hunspell'
git rm -r 'Telegram/ThirdParty/kcoreaddons'
git rm -r 'Telegram/ThirdParty/lz4'
git submodule update --init --recursive --depth=1
local src
for src in "${source[@]}"; do
src="${src%%::*}"
src="${src##*/}"
src="${src%.zst}"
if [[ $src == *.patch ]]; then
printf '\nApplying patch: %s\n' "$src"
patch -Np1 -F100 -i "${srcdir:?}/$src" || true
fi
done
# fix minizip headers
sed -E -e 's&#include <((un)?zip\.h)>&#include <minizip/\1>&g' \
-i Telegram/lib_base/base/zlib_help.h
}
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \
| sed -E 's/^[^0-9]+//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
echo "Building tde2e..."
local _cmake_tde2e=(
-B "build_tde2e"
-S "$_pkgsrc_tdlib"
-G Ninja
-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX=/usr
-DTD_E2E_ONLY=ON
-DBUILD_SHARED_LIBS=OFF
-DBUILD_TESTING=OFF
-Wno-dev
)
cmake "${_cmake_tde2e[@]}"
cmake --build "build_tde2e"
DESTDIR="$srcdir/deps" cmake --install "build_tde2e"
echo "Building ayugram..."
local _cmake_options=(
-B build
-S "$_pkgsrc"
-G Ninja
-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_PREFIX_PATH="$srcdir/deps/usr"
-DDESKTOP_APP_DISABLE_AUTOUPDATE=ON
-DTDESKTOP_API_ID=611335
-DTDESKTOP_API_HASH=d524b414d21f4d37f08684c1df41ac9c
-DDESKTOP_APP_USE_PACKAGED_FONTS=OFF
-Wno-dev
)
cmake "${_cmake_options[@]}"
cmake --build build
}
package() {
if [[ "${_use_sodeps::1}" == "t" ]]; then
eval "depends+=(
'libavcodec.so'
'libavfilter.so'
'libavformat.so'
'libavutil.so'
'libcrypto.so'
'libgio-2.0.so'
'libglib-2.0.so'
'libgobject-2.0.so'
'libheif.so'
'libjpeg.so'
'libjxl.so'
'libjxl_threads.so'
'liblz4.so'
'libopenal.so'
'libopenh264.so'
'libopus.so'
'libpipewire-0.3.so'
'libprotobuf-lite.so'
'libssl.so'
'libswresample.so'
'libswscale.so'
'libvpx.so'
'libxkbcommon.so'
'libxxhash.so'
'libz.so'
)"
fi
DESTDIR="$pkgdir" cmake --install build
}
|