blob: 41d48e21d117ea7dd1eaa6710dcb27503fa63029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Ali Molaei <ali dot molaei at protonmail dot com>
# Contributor: Samuel Walladge <samuel at swalladge dot net>
pkgname=tagspaces-bin
_pkgname=tagspaces
pkgver=5.3.5
pkgrel=1
pkgdesc="TagSpaces is an open source personal data manager. It helps you organize files with tags on every platform."
arch=("x86_64")
url="http://tagspaces.org"
license=("AGPL")
provides=("tagspaces")
conflicts=("tagspaces")
sha256sums=('872ae13d717b26ba38be96af9cb356355729844a03137ea1d96ed607f56a49c3')
source=("${_pkgname}-${pkgver}.deb::https://github.com/${_pkgname}/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-linux-amd64-${pkgver}.deb")
package() {
bsdtar -xv -C "${pkgdir}" -f "${srcdir}/data.tar.xz"
# symlink the main binary to a better location
mkdir -p ${pkgdir}/usr/bin/
ln -s /opt/TagSpaces/${_pkgname} ${pkgdir}/usr/bin/${_pkgname}
}
|