blob: f002a433562e0c8243f65fc1890583f8ed6aa34d (
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
31
32
|
# Maintainer: username227 <gfrank227 [at] gmail [dot] com>
# Contributor: Mihók Martin <mihok.martin@protonmail.com>
# Contributor: FabioLolix <fabio.loli@disroot.org>
# Contributor: Niklas Wojtkowiak <aur.7xcqe@passmail.com>
_pkgname='spacedrive'
pkgname="${_pkgname}-bin"
pkgver='0.4.2'
pkgrel='1'
epoch='1'
pkgdesc="A file manager from the future."
arch=('x86_64')
url="https://spacedrive.com"
_url_source='https://github.com/spacedriveapp/spacedrive'
license=('AGPL3')
source=("Spacedrive-linux-$pkgver-x86_64.deb::${_url_source}/releases/download/${pkgver}/Spacedrive-linux-x86_64.deb")
sha256sums=('49bb8bf7ac4d10e3d9dd9e6377481f26d3645281233b85be3fb2bd9afc8d9870')
depends=(gtk3 ffmpeg glibc gcc-libs glib2 pango libsoup cairo gdk-pixbuf2 libheif onnxruntime webkit2gtk-4.1 xdotool)
provides=(spacedrive)
conflicts=(spacedrive)
package() {
tar -xf "${srcdir}/data.tar.gz" --directory "${srcdir}"
#temporary workaround fixes #2006
mkdir -p "${pkgdir}/usr/lib/spacedrive/"
ln -s "/usr/lib/libonnxruntime.so" "${pkgdir}/usr/lib/spacedrive/libonnxruntime.so"
chmod -R 755 "${srcdir}/usr/share/"
install -Dm755 "${srcdir}/usr/bin/spacedrive" "${pkgdir}/usr/bin/spacedrive"
install -dm755 "${pkgdir}/usr/share/"
cp -r "${srcdir}/usr/share/" "${pkgdir}/usr/"
}
|