mirror of
https://github.com/avinal/xeus-basic.git
synced 2026-01-09 22:58:36 +05:30
13 lines
296 B
Bash
13 lines
296 B
Bash
#! /bin/sh
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: 2021 Avinal Kumar <avinal.xlvii@gmail.com>
|
|
|
|
# Create a directory for build
|
|
mkdir build && cd build || exit
|
|
|
|
# Configure CMake
|
|
cmake -D CMAKE_INSTALL_PREFIX="/srv/conda/envs/notebook" ..
|
|
|
|
# Install the Kernel
|
|
make install |