You are not logged in.
Hello!
I'm trying to install "OpenHantek6022be" from GitHub "https://github.com/OpenHantek/OpenHantek6022.git".
The problem: after I've cloned the program package from GitHub and navigated to the cloned package folder "OpenHantek6022", I tried to call the script "LinuxSetup_AsRoot" located inside the directory, which installs all build requirements and that's the output:
{
OpenHantek6022]$ sudo ./LinuxSetup_AsRoot
which: no apt in (/usr/local/sbin:/usr/local/bin:/usr/bin)
which: no dnf in (/usr/local/sbin:/usr/local/bin:/usr/bin)
which: no zypper in (/usr/local/sbin:/usr/local/bin:/usr/bin)
No package management tool found, cannot install build requirements automatically
}
I've searched for the problem. I guess it's related to the makepkg thing, but I don't know much more than that.
Offline
the script you're running checks which package manager you have to then run the appropriate command to get the build deps, but it only checks for apt, dnf and zypper. arch uses pacman for package management and there's no check for pacman in the script so you'll have to get the needed dependencies manually.
Offline