You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
681 B
30 lines
681 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
# TODO: common place
|
||
|
fatal()
|
||
|
{
|
||
|
echo "FATAL: $*" >&2
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
PKGNAME=r7-office
|
||
|
|
||
|
if [ "$1" = "--remove" ] ; then
|
||
|
epm remove $PKGNAME
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
[ "$1" != "--run" ] && echo "R7 Office for Linux from the official site" && exit
|
||
|
|
||
|
[ "$($DISTRVENDOR -a)" != "x86_64" ] && echo "Only x86_64 is supported" && exit 1
|
||
|
|
||
|
#arch=$($DISTRVENDOR --distro-arch)
|
||
|
arch=amd64
|
||
|
#pkgtype=$($DISTRVENDOR -p)
|
||
|
pkgtype=rpm
|
||
|
|
||
|
PKG="https://download.r7-office.ru/altlinux/r7-office.rpm"
|
||
|
|
||
|
epm install fonts-ttf-dejavu fonts-ttf-google-crosextra-carlito fonts-ttf-liberation glibc gst-libav gst-plugins-ugly1.0 libX11 libXScrnSaver libcairo libgcc1 libgtk+2 libgtkglext
|
||
|
epm install "$PKG"
|