blob: e9114792851d90d8959d7ab33d930989a5175183 (
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
|
# Maintainer: Jules PĂ©nuchot <jules@penuchot.com>
_name=sciplot
_author=sciplot
pkgname=${_name}-git
pkgver=v0.2.2.r63.gfc7b7c0
pkgrel=1
pkgdesc="A modern C++ scientific plotting library powered by gnuplot"
arch=('any')
url="https://github.com/${_author}/${_name}"
license=('MIT')
depends=('gnuplot')
makedepends=('git' 'cmake' 'make')
provides=('sciplot')
conflicts=('sciplot')
source=("$pkgname::git+https://github.com/${_author}/${_name}.git#branch=master")
sha256sums=('SKIP')
pkgver() {
cd $pkgname
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cmake -B build -S ${pkgname} \
-DSCIPLOT_BUILD_EXAMPLES=OFF \
-DSCIPLOT_BUILD_TESTS=OFF \
-DSCIPLOT_BUILD_DOCS=OFF \
-DCMAKE_BUILD_TYPE='None' \
-DCMAKE_INSTALL_PREFIX='/usr' \
-Wno-dev
make -C build
}
package() {
make -C build DESTDIR=$pkgdir install
}
|