blob: e10f0ca87ff7a34c554ef0a75cd9d0ce86afc939 (
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
|
# Maintainer: Jove Yu <yushijun110@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.1.2.28080
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' 'libpng' 'freetype2')
optdepends=(
'wps-office-365-fonts: FZ TTF fonts provided by wps office 365'
'cups: for printing support')
options=(!strip !zipman !debug)
source_base="https://pubwps-wps365-obs.wpscdn.cn/download/Linux/${pkgver: -5}/wps-office_${pkgver}.AK.preread.sw.365"
source_x86_64=("${source_base}_765469_amd64.deb")
source_aarch64=("${source_base}_765470_arm64.deb")
source_loong64=("${source_base}_765472_loongarch64.deb")
sha256sums_x86_64=('df89257786787ba4d22511438d6061c991762a354a66c65903858facd6f2da90')
sha256sums_aarch64=('62c0ee6b69d998b01bcea3112d3d2c40c815c0c107c0a5c06509eaf2adf6c2bd')
sha256sums_loong64=('2ba8cee7ef902b4b6fd1235f2cfc800709ed0c345f7b6bfa818421dcbf3694dc')
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 \
--exclude ./usr/share/desktop-directories \
--exclude ./usr/share/templates \
./opt/kingsoft/wps-office/office6 \
./usr
# to save typing pkgdir
cd "${pkgdir}"
# 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 menu category
sed -i 's|Categories=.*|&Office;|' usr/share/applications/*.desktop
# fix input method
sed -i '2i [[ "$XMODIFIERS" == "@im=fcitx" ]] && export QT_IM_MODULE=fcitx' \
usr/bin/{wps,wpp,et,wpspdf}
# allow custom fontconfig
sed -i '2i [[ -f ~/.config/Kingsoft/fonts/fonts.conf ]] && export FONTCONFIG_FILE=~/.config/Kingsoft/fonts/fonts.conf' \
usr/bin/{wps,wpp,et,wpspdf}
# disable force login
sed -i '2i sed -i "s/enableForceLogin=true/enableForceLogin=false/" $HOME/.config/Kingsoft/Office.conf' \
usr/bin/{wps,wpp,et,wpspdf}
# fix bsdtar warning
export LC_ALL=en_US.UTF-8
}
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
}
|