summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Gsänger2020-11-20 16:06:38 +0100
committerSebastian Gsänger2020-11-20 16:06:38 +0100
commitb563be0c1537c10e4fd52232d8ae98e9ed9823f8 (patch)
tree39f968221b2b6995e1697f32cdc503aac10985f5
parent3313ddd22e2410f5c5d0283ae2007db73b9ef773 (diff)
downloadaur-b563be0c1537c10e4fd52232d8ae98e9ed9823f8.tar.gz
fix missing makedepends
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ccf42ab3cfc0..2ea50124582d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,12 @@
pkgbase = xeus-cling
pkgdesc = A C++ jupyter kernel based on xeus and cling
pkgver = 0.10.0
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/jupyter-xeus/xeus-cling
arch = x86_64
license = BSD
+ makedepends = cmake
+ makedepends = cppzmq
depends = xtl
depends = xproperty
depends = xeus
diff --git a/PKGBUILD b/PKGBUILD
index d5d3efa5ee4f..2331444ff235 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Sebastian Gsänger <sebastian_gsaenger@web.de>
pkgname=xeus-cling
pkgver=0.10.0
-pkgrel=2
+pkgrel=3
pkgdesc="A C++ jupyter kernel based on xeus and cling"
arch=('x86_64')
url="https://github.com/jupyter-xeus/xeus-cling"
@@ -9,7 +9,7 @@ license=('BSD')
depends=('xtl' 'xproperty' 'xeus' 'nlohmann-json'
'jupyter' 'jupyter-widgetsnbextension'
'cling-dev' 'pugixml' 'cxxopts')
-makedepends=()
+makedepends=('cmake' 'cppzmq')
source=("https://github.com/jupyter-xeus/$pkgname/archive/$pkgver.tar.gz"
"0001-Rename-kernels.patch"
"0002-Use-llvm-from-cling.patch")