mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:02:12 +08:00
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# Contributor: Neo Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=spideroak
|
|
pkgver=3.7.9740
|
|
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)
|
|
optdepends=('qt: if you want to run the GUI')
|
|
makedepends=()
|
|
license=('custom')
|
|
conflicts=()
|
|
replaces=()
|
|
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=ubuntukarmic&arch=${_source_arch}")
|
|
md5sums=('f8ac349f89abe18e77dd1c8365f2603e')
|
|
[ "$CARCH" = "x86_64" ] && md5sums=('b40effb23486c2226cfe740e4f08d802')
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
build() {
|
|
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"
|
|
}
|