Skip to content

Packages

Daniel Bermond edited this page Sep 19, 2020 · 10 revisions

Arch Linux

Arch Linux packages are available at the Arch User Repository (AUR).

Installation Instructions

Installation in Arch Linux can easily be done using the standard makepkg tool.

  • release version
$ git clone https://aur.archlinux.org/screencast.git
$ cd screencast
$ makepkg -sri
  • git master version (screencast-git)
$ git clone https://aur.archlinux.org/screencast-git.git
$ cd screencast-git
$ makepkg -sri

Other GNU/Linux Distributions

Package repositories are available for other GNU/Linux distributions through the Open Build Service (OBS) at:

Availabe for:

  • Debian
  • Ubuntu/Mint
  • openSUSE
  • Fedora
  • Red Hat Enterprise Linux (RHEL)
  • CentOS
  • Scientific Linux
  • Mageia

Packages for the listed operating systems can be directly downloaded by browsing the Open Build Service link above. System repositories can also be configured as shown bellow.

System Repository Installation Instructions

Debian/Ubuntu/Mint

Debian 10 example. Browse the OBS repositories page and change Debian_10 to your distribution name. Note that for Linux Mint you need to use the matching Ubuntu version in which it is based.

  • install repository in sources.list (note the http:// protocol requirement)
$ sudo printf '%s\n' 'http://download.opensuse.org/repositories/home:/dbermond/Debian_10/ ./' >>/etc/apt/sources.list
  • install repository GPG key
$ wget -q -O - https://download.opensuse.org/repositories/home:/dbermond/Debian_10/Release.key | sudo apt-key add
  • synchronize package databases
$ sudo apt-get update
  • install package
$ sudo apt-get install screencast

openSUSE

openSUSE Tumbleweed example. Browse the OBS repositories page and change openSUSE_Tumbleweed to your distribution name.

  • install repository
$ sudo zypper addrepo --refresh https://download.opensuse.org/repositories/home:/dbermond/openSUSE_Tumbleweed/ screencast
  • install repository GPG key
$ sudo rpmkeys --import https://download.opensuse.org/repositories/home:/dbermond/openSUSE_Tumbleweed/repodata/repomd.xml.key
  • install package
$ sudo zypper install screencast

Fedora

Fedora Rawhide example. Browse the OBS repositories page and change Fedora_Rawhide to your distribution name. Note that Fedora does not provide FFmpeg in its official repositories.

  • install RPM Fusion repository (to provide FFmpeg)
$ sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
$ sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
  • install screencast repository
$ sudo dnf config-manager --add-repo https://download.opensuse.org/repositories/home:/dbermond/Fedora_Rawhide/
  • install screencast repository GPG key
$ sudo rpmkeys --import https://download.opensuse.org/repositories/home:/dbermond/Fedora_Rawhide/repodata/repomd.xml.key
  • install package
$ sudo dnf install screencast