blob: 9722596bd66376061d17dc23210c96c92a59047e (
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
|
# Maintainer:
_pkgname="annotator"
pkgname="$_pkgname-git"
pkgver=2.0.0.r0.g4c953af
pkgrel=1
pkgdesc="Image annotation for Elementary OS"
url='https://github.com/phase1geo/Annotator'
license=("GPL-3.0-or-later")
arch=('aarch64' 'armv6h' 'armv7h' 'i686' 'x86_64')
depends=(
'granite7'
'libportal-gtk4'
)
makedepends=(
'git'
'gtk3'
'meson'
'vala'
)
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \
| sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
arch-meson "$_pkgsrc" build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
ln -sf "com.github.phase1geo.annotator" "$pkgdir/usr/bin/annotator"
}
|