Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions vrep.rdmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
uri: http://coppeliarobotics.com/V-REP_PRO_EDU_V3_2_1_64_Linux.tar.gz
md5sum: 5a5daefebf7eea06f1d1ea9ced3225a2
install-script: |
#!/bin/bash
sudo mkdir -p /opt/vrep
sudo cp -vap V-REP_PRO_EDU_V3_2_1_64_Linux/* /opt/vrep
rm -rf V-REP_PRO_EDU_V3_2_1_64_Linux
check-presence-script: |
#!/bin/bash
if [ -d /opt/vrep ]; then
export VREP_VERSION=`head -n1 /opt/vrep/readme.txt | grep -o "V[0-9]\.[0-9]\.[0-9]" | tail -c+2`
if [ "$VREP_VERSION" == "3.2.1" ]; then
exit 0
else
exit 1
fi
else
exit 1
fi