blob: c07aecb3040b810478f6dedb2426ceefda3369d2 (
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
|
# Maintainer: Tuure Piitulainen <tuure.piitulainen@gmail.com>
_pkgname="vivify"
pkgname="vivify-bin"
provides=("vivify")
conflicts=("vivify")
pkgver="0.6.3"
pkgrel=1
pkgdesc="Markdown preview tool which can be used standalone or plug into an editor like (Neo)Vim"
arch=("x86_64")
url="https://github.com/jannis-baum/vivify"
license=("GPL-3.0-or-later")
depends=("gcc-libs" "sh")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jannis-baum/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-linux.tar.gz")
sha256sums=("b8077e2c7aab6486571c4f80bb10cfec0f33b7141580d81612984d8462bbfdd3")
# Stripping 'unneeded symbols' causes vivify-server executable to break
# (segmentation fault)
options=(!strip)
package() {
cd ./vivify-linux
install -Dm755 ./viv "${pkgdir}/usr/bin/viv"
install -Dm755 ./vivify-server "${pkgdir}/usr/bin/vivify-server"
}
|