blob: 90869dab03ac506b368b660c826df9474a747774 (
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
|
# Maintainer: Mattia Basaglia <glax@dragon.best>
# Contributor: Sythelux Rikd <dersyth@gmail.com>
## useful links:
# https://glaxnimate.mattbas.org/
# https://gitlab.com/mattbas/glaxnimate
# https://invent.kde.org/graphics/glaxnimate
# basic info
_pkgname="glaxnimate"
pkgname="$_pkgname-git"
pkgver=0.5.4.r325.gb530060
pkgrel=1
pkgdesc="Simple vector animation program"
url="https://invent.kde.org/graphics/glaxnimate"
license=('GPL-3.0-or-later')
arch=('x86_64' 'i686' 'armv7h' 'aarch64' 'riscv32' 'riscv64')
depends=(
'ffmpeg'
'karchive'
'kcompletion'
'kcoreaddons'
'kcrash'
'ki18n'
'kwidgetsaddons'
'kxmlgui'
'libarchive'
'potrace'
'python'
'qt6-tools'
)
makedepends=(
'clang' # lupdate/translations
'cmake'
'extra-cmake-modules'
'git'
'ninja'
)
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
_pkgsrc="kde.$_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/^[^0-9]+//;s/([^-]*-g)/r\1/;s/-/./g'
}
_source_glaxnimate() {
source+=(
'mattbas.cmake-lib'::'git+https://gitlab.com/mattbas/CMake-Lib.git'
'mattbas.python-lottie'::'git+https://gitlab.com/mattbas/python-lottie.git'
'mattbas.qt-color-widgets'::'git+https://gitlab.com/mattbas/Qt-Color-Widgets.git'
'pybind.pybind11'::'git+https://github.com/pybind/pybind11.git'
)
sha256sums+=(
'SKIP'
'SKIP'
'SKIP'
'SKIP'
)
}
_source_glaxnimate
_prepare_glaxnimate() (
cd "$_pkgsrc"
local _submodules=(
'mattbas.cmake-lib'::'cmake'
'mattbas.python-lottie'::'data/lib/python-lottie'
'mattbas.qt-color-widgets'::'external/Qt-Color-Widgets'
'pybind.pybind11'::'external/QtAppSetup/external/pybind11'
)
_submodule_update
)
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_glaxnimate
}
build() {
local _cmake_options=(
-B build
-S "$_pkgsrc"
-G Ninja
-DCMAKE_BUILD_TYPE=None
-DCMAKE_INSTALL_PREFIX='/usr'
-DQT_MAJOR_VERSION=6
-Wno-dev
)
cmake "${_cmake_options[@]}"
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|