blob: 0a7f0a8249e73d34764b1e90fa69b98b370988fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
pre_install() {
_unmaintained_warning
}
pre_upgrade() {
_unmaintained_warning
}
_unmaintained_warning() {
echo "Warning: pyrogram is no longer maintained!"
echo "Consider switching to an active fork."
echo "There are available AUR packages such as:"
echo " - python-pyrofork-git"
echo " - python-pyrogram-kurimuzon-git"
echo " - python-pyrogram-telegramplayground-git"
}
|