blob: bbfa3ee3d0763faec3bdbbf1279d7be8592566ab (
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
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
_plugin=focalboard
pkgname=mattermost-plugin-$_plugin
pkgver=7.0.0
pkgrel=1
pkgdesc='an open source, self-hosted alternative to Trello, Notion, and Asana'
arch=(x86_64)
url=https://www.focalboard.com
_url="https://github.com/${pkgname%%-*}/${pkgname##*-}"
license=()
depends=(mattermost)
options=(!strip)
_archive="$pkgname-$pkgver"
source=("$_archive.tgz::$_url/releases/download/v$pkgver/$pkgname.tar.gz")
sha256sums=('acd567e4473adda98f7724afd6247cd00a521385487b797cea88604a6aab842b')
# Note the intention of this package is to bulid from source, but I haven't
# gotten it to work yet. Contributions welcome! Temporarily it is installing
# the upstream generated binary version.
package() {
local _plugins="$pkgdir/var/lib/mattermost/plugins"
install -dm0755 "$_plugins"
cp -r "$_plugin" "$_plugins"
}
|