diff options
author | 2016-11-30 23:53:02 +0100 | |
---|---|---|
committer | 2016-11-30 23:53:02 +0100 | |
commit | 19828c52e5b50de79739e2c206382be74e596847 (patch) | |
tree | 1a29e87054648ae49ebd36aaf68737e8dcef0be7 /INSTALL/setup.d/30_tools | |
parent | 5e50ec8d65705b41140d06ec13611f0b3108f7b9 (diff) |
group build files into folder INSTALL
Change-Id: Ib76d53f9ff0aed21f12ebd7aac66c1e877bea4a5
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'INSTALL/setup.d/30_tools')
-rwxr-xr-x | INSTALL/setup.d/30_tools | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/INSTALL/setup.d/30_tools b/INSTALL/setup.d/30_tools new file mode 100755 index 0000000..486daba --- /dev/null +++ b/INSTALL/setup.d/30_tools @@ -0,0 +1,12 @@ +#!/bin/bash + +apt-get install -y python-lzma python-gpgme pbzip2 pigz lzop + +dpkg -i \ + $INSTDIR/tools/bmaptools/bmap-tools*.deb + +mkdir -p /usr/local/bin +for x in $INSTDIR/tools/scripts/*; do + install --mode=755 $x /usr/local/bin/ +done + |