blob: f9b2e152d769e4cf13e8652962eb9a731c0776a9 (
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
|
# Maintainer: Andrew Simmons <agsimmons0 at gmail dot com>
# Contributor:: Tab Fitts <tfitts [at] spryservers [dot] net>
pkgname=splashtop-business
pkgver=3.7.0.0
pkgrel=2
pkgdesc="Splashtop Business. Remotely access your desktop from any device from anywhere!"
arch=('x86_64')
url="https://www.splashtop.com/business"
license=('LicenseRef-Proprietary')
depends=('gcc-libs' 'glibc' 'keyutils' 'libcap' 'libpulse' 'libxcb' 'qt5-base' 'util-linux-libs' 'xcb-util-keysyms' 'xcb-util' 'xdotool' 'zlib')
optdepends=('bash-completion: Bash completion support')
provides=('splashtop-business')
options=('!strip')
install=${pkgname}.install
source=("https://download.splashtop.com/linuxclient/${pkgname}_Ubuntu_v${pkgver}_amd64.tar.gz")
sha256sums=('da63268fc5399ea1b7bb1e48d082ae6ff31b8ce7da494d81116603ebbfedf82f')
prepare(){
ar x splashtop-business_Ubuntu_amd64.deb
}
package(){
# Extract package data
tar xf data.tar.xz -C "${pkgdir}"
mkdir -m 777 "$pkgdir/opt/splashtop-business/config"
mkdir -m 755 "$pkgdir/opt/splashtop-business/dump"
mkdir -m 777 "$pkgdir/opt/splashtop-business/log"
}
|