compicc from home:bekun:devel project

Select Your Operating System

For Arch Linux, edit /etc/pacman.conf and add the following (note that the order of repositories in pacman.conf is important, since pacman always downloads the first found package):
[home_bekun_devel_Arch_Extra]
Server = https://download.opensuse.org/repositories/home:/bekun:/devel/Arch_Extra/$arch
Then run the following as root
key=$(curl -fsSL https://download.opensuse.org/repositories/home:bekun:devel/Arch_Extra/$(uname -m)/home_bekun_devel_Arch_Extra.key)
fingerprint=$(gpg --quiet --with-colons --import-options show-only --import --fingerprint <<< "${key}" | awk -F: '$1 == "fpr" { print $10 }')

pacman-key --init
pacman-key --add - <<< "${key}"
pacman-key --lsign-key "${fingerprint}"

pacman -Sy home_bekun_devel_Arch_Extra/compicc
For Debian 9.0 run the following:
Keep in mind that the owner of the key may distribute updates, packages and repositories that your system will trust (more information).
echo 'deb http://download.opensuse.org/repositories/home:/bekun:/devel/Debian_9.0/ /' | sudo tee /etc/apt/sources.list.d/home:bekun:devel.list
curl -fsSL https://download.opensuse.org/repositories/home:bekun:devel/Debian_9.0/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_bekun_devel.gpg > /dev/null
sudo apt update
sudo apt install compicc
For openSUSE Tumbleweed run the following as root:
zypper addrepo https://download.opensuse.org/repositories/home:bekun:devel/openSUSE_Tumbleweed/home:bekun:devel.repo
zypper refresh
zypper install compicc
For openSUSE Leap 42.3 run the following as root:
zypper addrepo https://download.opensuse.org/repositories/home:bekun:devel/openSUSE_Leap_42.3/home:bekun:devel.repo
zypper refresh
zypper install compicc
For openSUSE Leap 42.2 run the following as root:
zypper addrepo https://download.opensuse.org/repositories/home:bekun:devel/openSUSE_Leap_42.2/home:bekun:devel.repo
zypper refresh
zypper install compicc
For openSUSE Leap 42.1 run the following as root:
zypper addrepo https://download.opensuse.org/repositories/home:bekun:devel/openSUSE_Leap_42.1/home:bekun:devel.repo
zypper refresh
zypper install compicc
For openSUSE Factory ARM run the following as root:
zypper addrepo https://download.opensuse.org/repositories/home:bekun:devel/openSUSE_Factory_ARM/home:bekun:devel.repo
zypper refresh
zypper install compicc
For openSUSE Factory run the following as root:
zypper addrepo https://download.opensuse.org/repositories/home:bekun:devel/openSUSE_Factory/home:bekun:devel.repo
zypper refresh
zypper install compicc
For openSUSE 13.2 run the following as root:
zypper addrepo https://download.opensuse.org/repositories/home:bekun:devel/openSUSE_13.2/home:bekun:devel.repo
zypper refresh
zypper install compicc
For openSUSE 13.1 run the following as root:
zypper addrepo https://download.opensuse.org/repositories/home:bekun:devel/openSUSE_13.1/home:bekun:devel.repo
zypper refresh
zypper install compicc
For xUbuntu 16.04 run the following:
Keep in mind that the owner of the key may distribute updates, packages and repositories that your system will trust (more information).
echo 'deb http://download.opensuse.org/repositories/home:/bekun:/devel/xUbuntu_16.04/ /' | sudo tee /etc/apt/sources.list.d/home:bekun:devel.list
curl -fsSL https://download.opensuse.org/repositories/home:bekun:devel/xUbuntu_16.04/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_bekun_devel.gpg > /dev/null
sudo apt update
sudo apt install compicc