blob: b156f6481848249693bc8cc46b01d05c73d258fa (
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
|
# Maintainer: Jove Yu <yushijun110 [at] gmail.com>
# Maintainer: Guoxin "7Ji" Pu <pugokushin@gmail.com>
pkgbase=wps-office-365
pkgname=('wps-office-365' 'wps-office-365-xiezuo' 'wps-office-365-fonts')
pkgver=12.8.2.18605
pkgrel=1
pkgdesc="WPS Office, is an office productivity suite."
arch=('x86_64' 'aarch64' 'loong64')
url="https://365.wps.cn/"
license=('LicenseRef-WPS-EULA')
makedepends=(
'tar')
depends=(
'fontconfig' 'libxrender' 'xdg-utils' 'glu'
'libpulse' 'libxss' 'sqlite' 'libtool' 'libtiff'
'libxslt' 'libjpeg-turbo' 'libpng12' 'freetype2')
optdepends=(
'wps-office-365-fonts: FZ TTF fonts provided by wps office 365'
'cups: for printing support')
options=(!strip !zipman !debug)
source_x86_64=("https://wps-linux-365.wpscdn.cn/wps/download/ep/Linux365/${pkgver: -5}/wps-office_${pkgver}.AK.preload.sw_amd64.deb")
source_aarch64=("https://wps-linux-365.wpscdn.cn/wps/download/ep/Linux365/${pkgver: -5}/wps-office_${pkgver}.AK.preload.sw_arm64.deb")
source_loong64=("https://wps-linux-365.wpscdn.cn/wps/download/ep/Linux365/${pkgver: -5}/wps-office_${pkgver}.AK.preload.sw_loongarch64.deb")
sha256sums_x86_64=('7f2db7f328dd695ea964e3ee940311265723fc81de4438e0320ad3542d093cb4')
sha256sums_aarch64=('0735a908ccc2ce7e11157bdeee855de34e44aeb40b89fe70c06742f77f28517c')
sha256sums_loong64=('ad38994277912eeb9f96aca342a7e898ed74ef37b11f0d2bb4bac938835a527b')
prepare() {
xz -df data.tar.xz
}
_install(){
tar --no-same-owner -C "${pkgdir}" -xf data.tar "$@"
}
package_wps-office-365(){
conflicts=('wps-office')
provides=('wps-office')
_install --exclude './usr/*xiezuo*' --exclude './usr/share/fonts' \
./opt/kingsoft ./usr ./etc/xdg/menus
# to save typing pkgdir
cd "${pkgdir}"
# remove file
rm usr/bin/{wps_uninstall.sh,wps_xterm} \
usr/share/applications/wps-office-uninstall.desktop
# use system lib
rm opt/kingsoft/wps-office/office6/lib{jpeg,stdc++}.so*
if [[ "$CARCH" = "aarch64" ]]; then
# more stuffs are broken on ALARM, force these to use system library
rm opt/kingsoft/wps-office/office6/addons/cef/libm.so*
rm opt/kingsoft/wps-office/office6/libfreetype.so*
fi
# fix python2 call
sed -i "s/python -c 'import sys, urllib; print urllib\.unquote(sys\.argv\[1\])'/\
python -c 'import sys, urllib.parse; print(urllib.parse.unquote(sys.argv[1]))'/" usr/bin/wps
# fix template path
sed -i 's|URL=.*|URL=/opt/kingsoft/wps-office/office6/mui/zh_CN/templates/newfile.docx|' \
usr/share/templates/wps-office-wps-template.desktop
sed -i 's|URL=.*|URL=/opt/kingsoft/wps-office/office6/mui/zh_CN/templates/newfile.xlsx|' \
usr/share/templates/wps-office-et-template.desktop
sed -i 's|URL=.*|URL=/opt/kingsoft/wps-office/office6/mui/zh_CN/templates/newfile.pptx|' \
usr/share/templates/wps-office-wpp-template.desktop
# fix background process
sed -i '2i [[ $(ps -ef | grep -c "office6/$(basename $0)") == 1 ]] && gOptExt=-multiply' usr/bin/{wps,wpp,et,wpspdf}
# fix input method
sed -i '2i [[ "$XMODIFIERS" == "@im=fcitx" ]] && export QT_IM_MODULE=fcitx' usr/bin/{wps,wpp,et,wpspdf}
# fix xxx Njk0QkYtWVVEQkctRUFSNjktQlBSR0ItQVRRWEgK
sed -i 's|YUA..=NsbhfV4nLv_oZGENyLSVZA..|YUA..=WHfH10HHgeQrW2N48LfXrA..|' \
opt/kingsoft/wps-office/office6/cfgs/oem.ini
install -dm777 opt/kingsoft/.auth/
}
package_wps-office-365-xiezuo(){
_install --wildcards ./opt/xiezuo './usr/*xiezuo*'
}
package_wps-office-365-fonts(){
conflicts=('wps-office-fonts')
provides=('wps-office-fonts')
_install ./etc/fonts ./usr/share/fonts
}
|