Updated and finalized cocotb script.
authorR Veera Kumar <vklr@vkten.in>
Sun, 23 May 2021 14:39:30 +0000 (20:09 +0530)
committerR Veera Kumar <vklr@vkten.in>
Sun, 23 May 2021 14:39:30 +0000 (20:09 +0530)
cocotb-install

index c7cf901156f83538dcfed8628b7e0e327eca890d..67c7a572aca88c1448958e50c43bbeee46e5f0b7 100755 (executable)
@@ -5,13 +5,21 @@ if [ "$EUID" -ne 0 ]
 fi
 
 apt-get update -y
-apt-get install -y git python3 python3-dev g++ make python3-pip \
-                       python3-setuptools
+apt-get install -y git python3 python3-dev g++ make python3-setuptools \
+       python3-pytest
 
-# TODO, cd to SUDO_USER home directory just like in other scripts
+# change into $SUDO_USER home directory
+cd /home/$SUDO_USER
+mkdir -p src/cocotb
+cd src/cocotb
+
+git clone https://github.com/cocotb/cocotb.git
 
-git clone https://github.com/cocotb/cocotb
 cd cocotb
 git checkout v1.5.2
 python3 setup.py install
 
+cd /home/$SUDO_USER/src/cocotb
+chown -R $SUDO_USER .
+chgrp -R $SUDO_USER .
+