blob: 1a77ffda030ff378c511e28cb95a0ceceea16dda (
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
|
# Maintainer: Helder Bertoldo <helder.bertoldo@gmail.com>
gitname=Minder
author=phase1geo
auxname=minder
pkgname=("${auxname}-git")
pkgver=r1742.67fca66
pkgrel=1
pkgdesc="Mind-mapping application designed for Pantheon"
arch=('i686' 'x86_64')
url="https://github.com/${author}/${gitname}"
license=('GPL3')
depends=('gtk3' 'cairo' 'discount' 'glib2' 'granite' 'gtksourceview4' 'libarchive' 'libgee' 'libxml2')
optdepends=()
makedepends=('git' 'meson' 'ninja' 'vala')
provides=("${auxname}")
conflicts=("${auxname}")
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
}
|