diff options
author | Ashwith Rego | 2022-04-30 23:11:35 +0530 |
---|---|---|
committer | Ashwith Rego | 2022-04-30 23:11:35 +0530 |
commit | be09e95e4ff686a2b86823641cfa33c0b7e17134 (patch) | |
tree | 32fcb5df913406872bf49eb5180c22e11fd140d9 | |
parent | f683573b43aa5de921759229b2ac9133da60e5bb (diff) | |
download | nghdl-be09e95e4ff686a2b86823641cfa33c0b7e17134.tar.gz nghdl-be09e95e4ff686a2b86823641cfa33c0b7e17134.tar.bz2 nghdl-be09e95e4ff686a2b86823641cfa33c0b7e17134.zip |
Added PyQt5 setup
Added dnf command to install python3-qt5.
Although eSim's script does install this
package, since PyQt5 is a requirement for
nghdl, it makes sense to add it here.
-rwxr-xr-x | Fedora/install-nghdl.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Fedora/install-nghdl.sh b/Fedora/install-nghdl.sh index 49f3971..a9d7c87 100755 --- a/Fedora/install-nghdl.sh +++ b/Fedora/install-nghdl.sh @@ -66,10 +66,10 @@ function installDependency # Specific dependency for nvidia graphic cards echo "Installing graphics dependency for Ngspice source build" - echo "Installing libxaw7........................................" + echo "Installing libXaw........................................" sudo dnf install -y libXaw - echo "Installing libxaw7-dev...................................." + echo "installing libXaw-dev...................................." sudo dnf install -y libXaw-devel echo "Installing dependencies for $verilator...................." @@ -88,6 +88,12 @@ function installDependency sudo dnf install make autoconf flex bison which -y sudo dnf groupinstall 'Development Tools' -y fi + + # Although PyQt5 is installed in the main eSim script, + # it is a dependency for nghdl so it makes sense to + # keep it here as well. + echo "Installing PyQt5......................................" + sudfo dnf install -y python3-qt5 } |