forked from robotology/robotology-superbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document required apt dependencies in machine readable format with ap…
…t.txt file (robotology#825) Co-authored-by: Stefano Dafarra <[email protected]>
- Loading branch information
Showing
6 changed files
with
62 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
bash-completion | ||
build-essential | ||
cmake | ||
cmake-curses-gui | ||
coinor-libipopt-dev | ||
freeglut3-dev | ||
git | ||
libace-dev | ||
libboost-filesystem-dev | ||
libboost-system-dev | ||
libboost-thread-dev | ||
libdc1394-22-dev | ||
libedit-dev | ||
libeigen3-dev | ||
libgsl0-dev | ||
libjpeg-dev | ||
liblua5.1-dev | ||
libode-dev | ||
libopencv-dev | ||
libsdl1.2-dev | ||
libtinyxml-dev | ||
libv4l-dev | ||
libxml2-dev | ||
portaudio19-dev | ||
qml-module-qt-labs-folderlistmodel | ||
qml-module-qt-labs-settings | ||
qml-module-qtmultimedia | ||
qml-module-qtquick-controls | ||
qml-module-qtquick-dialogs | ||
qml-module-qtquick-window2 | ||
qml-module-qtquick2 | ||
qtbase5-dev | ||
qtdeclarative5-dev | ||
qtmultimedia5-dev | ||
swig | ||
libmatio-dev | ||
libirrlicht-dev | ||
libspdlog-dev | ||
libblas-dev | ||
liblapack-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
# | ||
# Install dependencies of robotology-superbuild | ||
# using apt on Ubuntu or Debian | ||
|
||
# Get location of the script | ||
SCRIPT_DIR=$(cd "$(dirname "$BASH_SOURCE")"; cd -P "$(dirname "$(readlink "$BASH_SOURCE" || echo .)")"; pwd) | ||
|
||
xargs -a ${SCRIPT_DIR}/../apt.txt apt-get install -y |