Skip to content
Snippets Groups Projects
Commit 18b10d9f authored by Eric Müller's avatar Eric Müller :mountain_bicyclist:
Browse files

chore: initial commit

parents
No related branches found
No related tags found
No related merge requests found
[gerrit]
host=brainscales-r.kip.uni-heidelberg.de
port=29418
project=yashchiki
defaultbranch=koutakia
defaultremote=review
defaultrebase=0
# ~~Yashchiki~~Koutakia
For now, this repository provides helpers for the EBRAINS container image build flow.
wscript 0 → 100755
def depends(ctx):
ctx("spack", branch="visionary")
def options(opt):
pass
def configure(cfg):
pass
def build(bld):
# install /bin
for bin in bld.path.ant_glob('bin/**/*'):
bld.install_as('${PREFIX}/%s' % bin.path_from(bld.path), bin)
# install /lib
for lib in bld.path.ant_glob('lib/**/*'):
bld.install_as('${PREFIX}/%s' % lib.path_from(bld.path), lib)
# install /share
for share in bld.path.ant_glob('share/**/*'):
bld.install_as('${PREFIX}/%s' % share.path_from(bld.path), share)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment