blob: 50680cedfd3f1cab937666dfc1513d4ebbf4e8b0 (
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
|
# Maintainer: Kimiblock Moe
pkgname=wechat
pkgver=4
pkgrel=3
epoch=1
pkgdesc="Fixes and optional sandbox for WeChat."
arch=('any')
url="https://github.com/Kraftland/portable"
license=('GPL3')
groups=()
options=(!debug !strip)
makedepends+=()
provides+=(wechat-uos-bwrap wechat-uos-qt wechat-universal-bwrap wechat-bwrap wechat-portable wechat-beta-bwrap wechat-sandbox-provider wechat-bwrap)
replaces+=(wechat-bwrap)
depends=("wechat-bin" "portable")
optdepends=()
makedepends+=()
checkdepends=()
source=(
portable-config
wechat.desktop
)
md5sums=('d040d6a8dc61703ab42c2cb3a79eb396'
'cbefeb42addf418f0a7164391d308ebf')
function package() {
install -Dm644 portable-config \
"${pkgdir}/usr/lib/wechat/portable-config"
install -d "${pkgdir}/usr/bin"
echo '''#!/usr/bin/bash
export _portalConfig=/usr/lib/wechat/portable-config
portable $@
''' >"${pkgdir}/usr/bin/wechat.sh"
chmod 755 "${pkgdir}/usr/bin/wechat.sh"
install -Dm644 \
"${srcdir}/wechat.desktop" \
"${pkgdir}/usr/share/applications/com.qq.weixin.desktop"
install -d "${pkgdir}/usr/share/libalpm/hooks"
echo '''[Action]
When = PostTransaction
Exec = /usr/bin/ln "-sfr" "/dev/null" "/usr/share/applications/wechat.desktop"
Depends = wechat
Description = Configuring WeChat
[Trigger]
Operation = Install
Operation = Upgrade
Type = Path
Target = usr/bin/wechat
Target = usr/share/applications/wechat.desktop''' >"${pkgdir}/usr/share/libalpm/hooks/wechat.hook"
}
|