summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Land2020-03-03 21:54:20 -0500
committerGreg Land2020-03-03 21:54:20 -0500
commit18b7c20a87a9167d1c48c9dd5b358674c830a131 (patch)
tree5a7005b47725c1e383250d9bf5d8fa59666b337a
parentb78c988b25c98db00773263051166cdae3cb04c9 (diff)
downloadaur-18b7c20a87a9167d1c48c9dd5b358674c830a131.tar.gz
Fixed typo in script that was breaking build deps
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD4
2 files changed, 6 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3c92308df6b4..23afcce54ef7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,13 @@
pkgbase = xeus
pkgdesc = C++ implementation of the Jupyter kernel protocol
pkgver = 0.23.2
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/QuantStack/xeus
arch = x86_64
license = BSD
+ makedepends = cmake
+ makedepends = zeromq
+ makedepends = cppzmq
depends = crypto++
depends = nlohmann-json
depends = xtl
diff --git a/PKGBUILD b/PKGBUILD
index 1865c7db49d1..a4bda9faa546 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,13 @@
# Maintainer: Tarn Burton <twburton at gmail dot com>
pkgname=xeus
pkgver=0.23.2
-pkgrel=3
+pkgrel=4
pkgdesc="C++ implementation of the Jupyter kernel protocol"
arch=("x86_64")
url="https://github.com/QuantStack/xeus"
license=('BSD')
depends=('crypto++' 'nlohmann-json' 'xtl' 'zeromq')
-makedepend=('cmake' 'zeromq' 'cppzmq')
+makedepends=('cmake' 'zeromq' 'cppzmq')
source=("$pkgname-$pkgver.tar.gz::https://github.com/QuantStack/xeus/archive/$pkgver.tar.gz")
sha256sums=('62d4734a27609b389df34b56793245d4afd8f8346dba2e5c0e78bb02637a1e5c')
options=(staticlibs)