Package Details: xeus-zmq 1.3.0-1

Git Clone URL: https://aur.archlinux.org/xeus-zmq.git (read-only, click to copy)
Package Base: xeus-zmq
Description: ZeroMQ-based middleware for xeus
Upstream URL: https://github.com/jupyter-xeus/xeus-zmq
Licenses: BSD
Submitter: kaelingre
Maintainer: kaelingre
Last Packager: kaelingre
Votes: 0
Popularity: 0.000000
First Submitted: 2023-02-01 18:09 (UTC)
Last Updated: 2024-03-25 18:10 (UTC)

Latest Comments

limuy commented on 2023-07-22 11:57 (UTC) (edited on 2023-07-22 11:58 (UTC) by limuy)

please upgrade this package to 1.1.0,you can you this pkgbuild file to upgrade,thank you!

# Maintainer: Gregor Kaelin <kaelingre at gmail dot com>

pkgname=xeus-zmq
pkgver=1.1.0
pkgrel=1
pkgdesc="ZeroMQ-based middleware for xeus"
arch=("x86_64")
url="https://github.com/jupyter-xeus/xeus-zmq"
license=('BSD')
depends=('xeus' 'zeromq')
makedepends=('cmake' 'cppzmq')
source=("$pkgname-$pkgver.tar.gz::https://github.com/jupyter-xeus/xeus-zmq/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('d83db4f003349abfd11fcbf4ffdc91ebafb6c01bb36a950f94f09e5704d3d8dd')
options=(staticlibs)

build() {
    cd "$pkgname-$pkgver"
    mkdir -p build
    cd build
    cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
    make
}

package() {
    cd "$pkgname-$pkgver/build"
    make DESTDIR="${pkgdir}" install
}