blob: 2db4141b0f5eef307d97108e5ab14a14a0a02c45 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: xiota / aur.chaotic.cx
_pkgname='geany-plugin-preview'
pkgname="$_pkgname"
pkgdesc="Geany plugin to preview lightweight markup languages"
url="https://github.com/xiota/geany-preview"
pkgver=0.1.2
pkgrel=1
license=('GPL-3.0-or-later')
arch=('x86_64')
depends=(
'cmark-gfm'
'geany'
'libpodofo.so' # podofo
'webkit2gtk-4.1'
)
makedepends=(
'git'
'meson'
)
optdepends=(
'asciidoc: Preview AsciiDoc'
'asciidoctor: Preview AsciiDoc'
'pandoc: Preview many other file formats'
# AUR
'ttf-courier-prime: Export Fountain screenplays to PDF'
)
_pkgsrc="geany-preview"
source=("$_pkgsrc"::"git+$url.git#tag=v$pkgver")
sha256sums=('SKIP')
options=(!lto)
build() {
cd "$_pkgsrc"
meson rewrite kwargs set project / version "$pkgver"
local _meson_args=(
--buildtype=plain
--prefix=/usr
--libexecdir=lib
--sbindir=bin
--auto-features=enabled
-Db_pie=true
-Db_lto=false
)
meson setup "${_meson_args}" ../build
meson compile -C ../build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|