Install zenroom in images.

This commit is contained in:
parazyd 2018-02-07 17:44:02 +01:00
parent 843746f8fe
commit ddf77ab90e
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
1 changed files with 12 additions and 1 deletions

View File

@ -37,7 +37,7 @@ blend_postinst() {
notice "executing $blend_name postinst"
nopackage=(musl tomb golang tordam stem netdata)
nopackage=(musl tomb golang tordam stem netdata zenroom)
for app in $nopackage; do
blend_install_${app} || zerr
done || zerr
@ -195,6 +195,17 @@ EOF
chroot-script install-stem || zerr
}
## }}}
## {{{ blend_install_zenroom()
blend_install_zenroom() {
fn blend_install_zenroom
req=(strapdir zenroom_url)
ckreq || return 1
notice "installing zenroom"
sudo wget -O "$strapdir/usr/local/bin/zenroom" "$zenroom_url" || zerr
sudo chmod +x "$strapdir/usr/local/bin/zenroom"
}
## }}}
## {{{ blend_finalize()
blend_finalize() {