docs: Add instructions for OpenSUSE

This commit is contained in:
robxnano
2023-10-21 17:35:36 +01:00
committed by Bradley Sepos
parent 655403c1a5
commit a21cb624cc
3 changed files with 113 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ Dependency installation instructions are available for the following distributio
- [Fedora](install-dependencies-fedora.html)
- [Gentoo](install-dependencies-gentoo.html)
- [Mageia](install-dependencies-mageia.html)
- [OpenSUSE](install-dependencies-opensuse.html)
- [Ubuntu](install-dependencies-ubuntu.html)
- [Void](install-dependencies-void.html)

View File

@@ -0,0 +1,111 @@
---
Type: article
Title: Installing dependencies on OpenSUSE
Project: HandBrake
Project_URL: https://handbrake.fr/
Project_Version: Latest
Language: English
Language_Code: en
Authors: [ Rob (robxnano) ]
Copyright: 2023 HandBrake Team
License: Creative Commons Attribution-ShareAlike 4.0 International
License_Abbr: CC BY-SA 4.0
License_URL: https://handbrake.fr/docs/license.html
---
Installing dependencies on OpenSUSE
===================================
The following instructions are for [OpenSUSE](https://opensuse.org) Leap 15.4 and Tumbleweed.
Basic requirements to run commands:
- sudo (for normal user accounts)
Dependencies:
- autoconf
- automake
- binutils
- bzip2
- cmake
- fontconfig-devel
- freetype-devel
- fribidi-devel
- gcc-c++
- git
- gzip
- harfbuzz-devel
- lbzip2
- libass-devel
- libjansson-devel
- libjpeg8-devel
- libmp3lame-devel
- libnuma-devel
- libogg-devel
- libopus-devel
- libsamplerate-devel
- libtheora-devel
- libtool
- libvorbis-devel
- libxml2-devel
- libvpx-devel
- m4
- make
- meson
- nasm
- ninja
- patch
- pkg-config
- python3
- speex-devel
- tar
- xz-devel
- zimg-devel
- zlib-devel
Additional dependencies not available in the base repository:
- libx264-devel [Packman]
Intel Quick Sync Video dependencies (optional):
- libva-devel
- libdrm-devel
Graphical interface dependencies:
- AppStream
- desktop-file-utils
- gstreamer-plugins-base-devel
- gstreamer-plugins-good
- gstreamer-plugins-libav
- gtk3-devel
Install dependencies.
sudo zypper in autoconf automake binutils bzip2 cmake fontconfig-devel freetype-devel fribidi-devel gcc-c++ git gzip harfbuzz-devel lbzip2 libass-devel libjansson-devel libjpeg8-devel libmp3lame-devel libnuma-devel libogg-devel libopus-devel libsamplerate-devel libtheora-devel libtool libvorbis-devel libxml2-devel libvpx-devel m4 make meson nasm ninja patch pkg-config python3 speex-devel tar xz-devel zimg-devel zlib-devel
Install the [Packman](https://en.opensuse.org/Additional_package_repositories) Essentials repository and related additional dependencies.
# OpenSUSE Leap
sudo zypper ar -cfp 90 'https://ftp.fau.de/packman/suse/openSUSE_Leap_$releasever/Essentials' packman-essentials
# OpenSUSE Slowroll
sudo zypper ar -cfp 90 'https://ftp.fau.de/packman/suse/openSUSE_Slowroll/Essentials' packman-essentials
# OpenSUSE Tumbleweed
sudo zypper ar -cfp 90 'https://ftp.fau.de/packman/suse/openSUSE_Tumbleweed/Essentials' packman-essentials
sudo zypper dup --from packman-essentials --allow-vendor-change
sudo zypper in libx264-devel
To build with Intel Quick Sync Video support, install the QSV dependencies.
sudo zypper in libva-devel libdrm-devel
To build the GTK [GUI](abbr:Graphical User Interface), install the graphical interface dependencies.
sudo zypper in AppStream desktop-file-utils gstreamer-plugins-base-devel gstreamer-plugins-good gstreamer-plugins-libav gtk3-devel
OpenSUSE is now prepared to build HandBrake. See [Building HandBrake for Linux](build-linux.html) for further instructions.

View File

@@ -162,7 +162,7 @@ Table of contents
- [Building HandBrake for BSD](developer/build-bsd.html)
- Installing dependencies on [FreeBSD](developer/install-dependencies-freebsd.html) / [NetBSD](developer/install-dependencies-netbsd.html) / [OpenBSD](developer/install-dependencies-openbsd.html)
- [Building HandBrake for Linux](developer/build-linux.html)
- Installing dependencies on [Alpine](developer/install-dependencies-alpine.html) / [Arch](developer/install-dependencies-arch.html) / [CentOS](developer/install-dependencies-centos.html) / [Clear](developer/install-dependencies-clear.html) / [Debian](developer/install-dependencies-debian.html) / [Fedora](developer/install-dependencies-fedora.html) / [Gentoo](developer/install-dependencies-gentoo.html) / [Mageia](developer/install-dependencies-mageia.html) / [Ubuntu](developer/install-dependencies-ubuntu.html) / [Void](developer/install-dependencies-void.html)
- Installing dependencies on [Alpine](developer/install-dependencies-alpine.html) / [Arch](developer/install-dependencies-arch.html) / [CentOS](developer/install-dependencies-centos.html) / [Clear](developer/install-dependencies-clear.html) / [Debian](developer/install-dependencies-debian.html) / [Fedora](developer/install-dependencies-fedora.html) / [Gentoo](developer/install-dependencies-gentoo.html) / [Mageia](developer/install-dependencies-mageia.html) / [OpenSUSE](developer/install-dependencies-opensuse.html) / [Ubuntu](developer/install-dependencies-ubuntu.html) / [Void](developer/install-dependencies-void.html)
- [Building HandBrake for Mac](developer/build-mac.html)
- [Building HandBrake for Windows](developer/build-windows.html)
- Packaging HandBrake