mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
34 lines
1.0 KiB
Bash
34 lines
1.0 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer Neo Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=spideroak
|
|
pkgver=4.7.9948
|
|
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/"
|
|
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_arch="i386"
|
|
[ "$CARCH" = "x86_64" ] && _source_arch="x86_64"
|
|
source=("spideroak_${pkgver}_${_source_arch}.deb::https://spideroak.com/directdownload?platform=ubuntumaverick&arch=${_source_arch}")
|
|
md5sums=('a35b8da34c7b85a3abc290f12336570b')
|
|
[ "$CARCH" = "i686" ] && md5sums=('9ab7ebadf0b18c812bef40d41530d7c6')
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
package() {
|
|
cd "${srcdir}"
|
|
bsdtar -xf "spideroak_${pkgver}_${_source_arch}.deb" data.tar.gz
|
|
bsdtar -xf data.tar.gz
|
|
rm data.tar.gz
|
|
mv {usr,etc} "${pkgdir}"
|
|
msg "Done"
|
|
}
|