51 lines
1.6 KiB
Bash
51 lines
1.6 KiB
Bash
# Template file for 'wps-office'
|
|
pkgname=wps-office
|
|
version=11.1.0.9615
|
|
revision=1
|
|
archs="x86_64"
|
|
create_wrksrc=yes
|
|
makedepends="rpmextract"
|
|
short_desc="Linux office suite with similar appearance to MS Office"
|
|
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
|
|
#The old Kingsoft WPS Community License has disappeared from the
|
|
#site. There is an EULA in the archive which is instaled as license
|
|
#and a non-downloadable EULA which is accesible from inside the program:
|
|
#https://www.wps.com/eula?distsrc=2019help&lang=en_US&version=11.1.0.9505
|
|
license="custom:EULA"
|
|
homepage="http://wps-community.org"
|
|
changelog="http://linux.wps.com/wpslinuxlog.html"
|
|
checksum=3b9e6c1f8f25b51ae08aad4a37bfd7fd25ce535479126833678b147c5f910252
|
|
allow_unknown_shlibs=yes
|
|
nodebug=yes
|
|
restricted=yes
|
|
|
|
|
|
#The programs themselves are PIE, but the error reporter isn't :/
|
|
nopie=yes
|
|
|
|
_disturl=http://wdl1.pcfg.cache.wpscdn.com/wpsdl/wpsoffice/download/linux/9615/
|
|
_distTar="${pkgname}-${version}.XA-1.x86_64.rpm"
|
|
distfiles="${_disturl}/${_distTar}"
|
|
|
|
|
|
do_install() {
|
|
cp -R ${wrksrc}/* ${DESTDIR}
|
|
}
|
|
|
|
post_install() {
|
|
|
|
#Clean up:
|
|
#Delete everything under /etc. It contains cron, logrotate and autostart
|
|
# configuration for the update check and a seperate menu category for the
|
|
# wps programs that does not work.
|
|
rm -rf ${DESTDIR}/etc
|
|
|
|
#Delete postinst and prerm scripts
|
|
rm -rf ${DESTDIR}/opt/kingsoft/wps-office/INSTALL
|
|
|
|
# Install license
|
|
vlicense ${DESTDIR}/opt/kingsoft/wps-office/office6/mui/default/EULA_linux.txt
|
|
|
|
# Install privacy notice as documentation
|
|
vdoc ${DESTDIR}/opt/kingsoft/wps-office/office6/mui/default/Privacy_Linux.txt
|
|
}
|