mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:32:15 +08:00
30 lines
875 B
Bash
30 lines
875 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer Neo Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=spideroak
|
|
pkgver=4.8.0
|
|
pkgrel=1
|
|
pkgdesc="Secure and consolidated free online backup, storage, access, sharing & sync tool for Windows, Mac OS X, and Linux."
|
|
url="https://spideroak.com/"
|
|
arch=('x86_64')
|
|
depends=('openssl' 'qt')
|
|
optdepends=('dbus')
|
|
license=('custom')
|
|
categories=('network')
|
|
screenshot=('https://spideroak.com/static/v0.1/main/images/screenshots/new/view-versions.png')
|
|
options=(!strip)
|
|
install=spideroak.install
|
|
source=("spideroak_${pkgver}_x86_64.deb::https://spideroak.com/directdownload?platform=ubuntulucid&arch=x86_64")
|
|
md5sums=('2cc1f5a74c670e21d3b89072d7d0fede')
|
|
|
|
package() {
|
|
cd "${srcdir}"
|
|
bsdtar -xf "spideroak_${pkgver}_x86_64.deb" data.tar.gz
|
|
bsdtar -xf data.tar.gz
|
|
rm data.tar.gz
|
|
mv {usr,etc} "${pkgdir}"
|
|
msg "Done"
|
|
}
|