-
Notifications
You must be signed in to change notification settings - Fork 10
Packages
Arch Linux packages are available at the Arch User Repository (AUR).
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
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.
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 thehttp://
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 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 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