blob: e14e5e6454f334ccfe49ee9c863f4cc20bf38b61 (
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
|
# Maintainer: Guilhem Saurel <guilhem.saurel@laas.fr>
# Contributor: Yunhui Fu <yhfudev@gmail.com>
pkgname=tulip
pkgver=5.7.4
pkgrel=1
pkgdesc='An information visualization framework dedicated to the analysis and visualization of relational data.'
arch=( 'i686' 'x86_64' 'armv6' 'armv6h' 'arm7h' )
url='http://tulip.labri.fr/'
license=('GPL')
depends=(
'qt6-base'
'libjpeg'
'libpng'
'zlib'
'glew'
'libxml2'
'freetype2'
'qhull'
'quazip-qt6'
'yajl'
'python'
'desktop-file-utils'
)
makedepends=(
'cmake'
'cppunit'
'sip'
)
optdepends=(
'doxygen'
'python-sphinx'
)
source=("https://sourceforge.net/projects/auber/files/tulip/tulip-${pkgver}/tulip-${pkgver}_src.tar.gz")
sha256sums=('ef3db55a43e2d6fd801a2b210e65d93c079d3238173d19e95221d3cc49dce4b6')
build()
{
cmake -B "build-$pkgver" -S "$pkgbase-$pkgver" \
-DTULIP_BUILD_TESTS=ON \
-DTULIP_USE_QT6=ON \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_PREFIX=/usr \
-Wno-dev
cmake --build "build-$pkgver"
}
#check() {
#cmake --build "build-$pkgver" -t test
##The following tests FAILED:
##16 - PushPopTest (Subprocess aborted)
##31 - TulipPluginsLoadingTest (Subprocess aborted)
##35 - ExternalPluginsBuildTest (Failed)
#}
package() {
DESTDIR="$pkgdir/" cmake --build "build-$pkgver" -t install
}
|