blob: 11c5e568327a69113648500b494eb1c61b3704f8 (
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
|
# Maintainer: Sebastian Gsänger <sebastian_gsaenger@web.de>
# Maintainer: chn <g897331845@gmail.com>
pkgname=xeus-cling
pkgver=0.13.0
pkgrel=2
pkgdesc="A C++ jupyter kernel based on xeus and cling"
arch=('x86_64')
url="https://github.com/jupyter-xeus/xeus-cling"
license=('BSD')
depends=('xtl' 'xproperty' 'xeus' 'nlohmann-json'
'jupyter-notebook' 'jupyter-widgetsnbextension'
'cling' 'pugixml' 'cxxopts')
makedepends=('cmake' 'cppzmq')
source=("https://github.com/jupyter-xeus/$pkgname/archive/$pkgver.tar.gz"
"0001-Rename-kernels.patch"
"0002-Use-llvm-from-cling.patch"
"0003-put-config-file-at-etc.patch"
"0004-fix-build.patch")
md5sums=('8d99920a167b1ca6b2ff4a3ef0bd1ded'
'e03c81c3701e4f0dea249955051c2ddf'
'30e86ddf8e4996352eb456e12ec686bb'
'fb1bf5fdaa53af1c010b9da9d29f63b6'
'c492a7955f6bd8315fd8a100e2457744')
prepare() {
cd "$pkgname-$pkgver"
local src
for src in "${source[@]}"; do
src="${src%%::*}"
src="${src##*/}"
[[ $src = *.patch ]] || continue
echo "Applying patch $src..."
patch -Np1 < "../$src"
done
}
build() {
if [ -z $CPLUS_INCLUDE_PATH ]
then
export CPLUS_INCLUDE_PATH=/opt/cling/include
else
export CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:/opt/cling/include
fi
cd "$pkgname-$pkgver"
mkdir -p build
cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DClang_DIR=/opt/cling/lib/cmake/clang \
..
cmake --build .
}
package() {
cd "$pkgname-$pkgver"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
cd "build"
DESTDIR="$pkgdir" cmake --build . -t install
}
|