blob: d6f6784b6403e554a59cb0c51aa9bfcaa7e937a1 (
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
|
# Maintainer: Pantelis Panayiotou <p.panayiotou@gmail.com>
pkgname=graphs-git
pkgver=nightly
pkgrel=1
pkgdesc="Plot and manipulate data (Gnome Circle app)"
arch=('x86_64')
url="https://welcome.gnome.org/app/Graphs/"
license=('GPL-3.0-or-later')
depends=('gtk4' 'libadwaita' 'python-matplotlib' 'python-scipy' 'python-numpy' 'python-numexpr' 'python-sympy' 'gobject-introspection')
conflicts=('graphs')
makedepends=('git' 'meson' 'blueprint-compiler' 'gettext' 'vala' 'gobject-introspection-runtime')
source=("$pkgname"::"git+https://gitlab.gnome.org/World/Graphs.git")
sha256sums=('SKIP')
build() {
cd "${pkgname}"
meson setup "build/"
cd "build/"
meson configure -Dprefix="/usr"
meson compile
}
package() {
cd "${pkgname}"
cd "build/"
meson install --destdir="${pkgdir}"
}
|