blob: ba9b2587c428e3c4d37f3a0457f1a95358b9bced (
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
|
# Maintainer: Sythelux Rikd <dersyth@gmail.com>
_corpname=glaxnimate
_pkgname='glaxnimate'
pkgname="$_pkgname-git"
pkgver=0.4.0
pkgrel=1
pkgdesc='A messaging browser that allows you to combine your favorite messaging services into one application - git version'
pkgdesc="Simple vector animation program."
url="https://glaxnimate.mattbas.org/"
license=('GPL3')
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
makedepends=('git' 'qt5-base' 'python' 'zlib' 'hicolor-icon-theme' 'potrace' 'ffmpeg' 'cmake' 'qt5-tools')
depends=('python' 'qt5-base' 'potrace' 'ffmpeg')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=(
"$_pkgname::git+https://gitlab.com/mattbas/$_pkgname/#branch=release"
)
sha256sums=('SKIP')
prepare() {
cd "$_pkgname/"
# Provide git submodules
git submodule init
git submodule update --init --recursive
}
pkgver() {
cd "$srcdir/$_pkgname/"
git describe --tags | tr - _
}
build() {
cd "$srcdir/$_pkgname/"
mkdir -p build
cd build
cmake ".." -DCMAKE_INSTALL_PREFIX=/usr
make -j 4
make -j 4 translations
}
package() {
cd "$srcdir/$_pkgname/build"
make install DESTDIR=$pkgdir >/dev/null
}
|