blob: 49cd5fb47a88266259cbb08081b56922112d63ee (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Maintainer:
# Contributor: Matthew Sexton <matthew@asylumtech.com>
# Contributor: Lubosz Sarnecki <lubosz at gmail dot com>
# Contributor: Vincent Hourdin <vh|at|free-astro=DOT=vinvin.tf>
## links
# https://www.siril.org/
# https://gitlab.com/free-astro/siril
_pkgname="siril"
pkgname="$_pkgname-git"
pkgver=1.2.5.r1586.g7c63e4d
pkgrel=1
pkgdesc="Astronomical image processing software for Linux (IRIS clone)"
url="https://gitlab.com/free-astro/siril"
arch=('i686' 'x86_64')
license=('GPL-3.0-or-later')
depends=(
'cfitsio'
'curl'
'exiv2'
'ffms2'
'fftw'
'gsl'
'gtk3'
'gtksourceview4'
'libgit2'
'libheif'
'libraw'
'libxisf'
'opencv'
'wcslib'
)
makedepends=(
'cmake'
'git'
'meson'
'ninja'
)
checkdepends=(
'criterion'
)
options=('!lto')
_source_main() {
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+$url.git")
sha256sums=('SKIP')
}
_source_siril() {
source+=(
'flathub.shared-modules'::'git+https://github.com/flathub/shared-modules.git'
'carvac.librtprocess'::'git+https://github.com/CarVac/librtprocess.git'
)
sha256sums+=(
'SKIP'
'SKIP'
)
}
_prepare_siril() (
cd "$_pkgsrc"
local _submodules=(
'flathub.shared-modules'::'build/flatpak/shared-modules'
'carvac.librtprocess'::'subprojects/librtprocess'
)
_submodule_update
)
_source_main
_source_siril
prepare() {
_submodule_update() {
local _module
for _module in "${_submodules[@]}"; do
git submodule init "${_module##*::}"
git submodule set-url "${_module##*::}" "$srcdir/${_module%::*}"
git -c protocol.file.allow=always submodule update "${_module##*::}"
done
}
_prepare_siril
}
pkgver() {
cd "$_pkgsrc"
local _tag _version _revision _hash
_tag=$(git tag | grep -Ev '(1\.3\.3|[a-z][a-z])' | sort -rV | head -1)
_version=${_tag:?}
_revision=$(git rev-list --count --cherry-pick "$_tag"...HEAD)
_hash=$(git rev-parse --short=7 HEAD)
printf '%s.r%s.g%s' "${_version:?}" "${_revision:?}" "${_hash:?}"
}
build() {
local _meson_options=()
# criterion available and needed only for check
if pacman -Q criterion 2> /dev/null; then
_meson_options+=(
-Dcriterion=true
)
fi
arch-meson "${_meson_options[@]}" "$_pkgsrc" build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
}
|