This package currently will not build due to the service command being removed in systemd 260. The script ccs/install_scripts/jlink_install.sh requires the service command and will exit with an error if it doesn't find it.
Trying to comment out the bad lines in the script when running the installer manually does not work, as each retry will re-extract the script from source.
The best solution I could find for this issue is to create a local service command which does nothing cleanly. Creating the script below at /usr/local/bin/service seems to work for me (and make sure to make it executable with chmod +x.
#!/bin/bash
exit 0;
Pinned Comments