summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f546a36e6e7659de9a30de528fe6e4c353097014 (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
# Maintainer: Helder Bertoldo <helder.bertoldo@gmail.com>

gitname=quilter
pkgname=("${gitname}-git")
pkgver=r506.0ba9fde
pkgrel=1
pkgdesc="Markdown reader with preview option designed for elementary OS. Donations: Would you like to support the development of this app to new heights? Then: https://www.patreon.com/lainsce"
arch=('i686' 'x86_64')
url="https://github.com/lainsce/${gitname}"
license=('GPL3')
depends=('gtk3' 'granite' 'gtkspell3' 'gtksourceview3' 'webkit2gtk' 'discount')
optdepends=()
makedepends=('git' 'vala' 'meson')
provides=("$gitname")
conflicts=("$gitname")
source=("git+${url}.git")
md5sums=('SKIP')

pkgver() {
    cd "${gitname}"
    ( set -o pipefail
        git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
        printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
    )
}

build() {
    cd "${gitname}/"
    meson . _build --prefix=/usr
    ninja -C _build
}

package() {
    cd "${gitname}/"
    DESTDIR="${pkgdir}" ninja -C _build install
}