blob: 6d428ae06a48fdb56b544f807d0dafd484c4cb04 (
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
|
# Maintainer: Daniel Bermond <dbermond@archlinux.org>
pkgname=gromit-mpx
pkgver=1.7.0
pkgrel=4
pkgdesc='On-screen annotation tool'
arch=('x86_64')
url='https://github.com/bk138/gromit-mpx/'
license=('GPL-2.0-or-later')
depends=(
'cairo'
'gdk-pixbuf2'
'glib2'
'glibc'
'gtk3'
'hicolor-icon-theme'
'libappindicator-gtk3'
'libx11'
'libxi'
'lz4')
makedepends=(
'cmake'
'git')
backup=('etc/gromit-mpx/gromit-mpx.cfg')
source=("git+https://github.com/bk138/gromit-mpx.git#tag=${pkgver}")
sha256sums=('4059ffd9e8cc55f65240522fb8aeac743b31b6e47448030e84e02ccc5a4b4d21')
prepare() {
git -C gromit-mpx submodule init
git -C gromit-mpx config --local submodule.flatpak/shared-modules.update none
git -C gromit-mpx -c protocol.file.allow='always' submodule update
}
build() {
cmake -B build -S gromit-mpx \
-G 'Unix Makefiles' \
-DCMAKE_BUILD_TYPE:STRING='None' \
-DCMAKE_INSTALL_PREFIX:PATH='/usr' \
-DCMAKE_INSTALL_SYSCONFDIR:PATH='/etc' \
-DCMAKE_POLICY_VERSION_MINIMUM:STRING="3.5.0" \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|