HandBrake-docs/source/docs/en/1.1.0/developer/install-dependencies-ubuntu.markdown
Bradley Sepos ce7c053710
docs: Add basic requirements to all build dependencies.
sudo and sometimes curl are needed simply to run the commands as instructed, so list those.
2018-05-31 06:24:45 -04:00

2.4 KiB

Type, Title, Project, Project_URL, Project_Version, Language, Language_Code, Authors, Copyright, License, License_Abbr, License_URL
Type Title Project Project_URL Project_Version Language Language_Code Authors Copyright License License_Abbr License_URL
article Installing dependencies on Ubuntu HandBrake https://handbrake.fr/ 1.1.0 English en
Bradley Sepos <bradley@bradleysepos.com> (BradleyS)
2018 HandBrake Team Creative Commons Attribution-ShareAlike 4.0 International CC BY-SA 4.0 https://handbrake.fr/docs/license.html

Installing dependencies on Ubuntu

The following instructions are for Ubuntu 18.04 LTS (Bionic Beaver), 16.04 LTS (Xenial Xerus), and Ubuntu 14.04 LTS (Trusty Tahr).

Basic requirements to run the following commands:

  • sudo (for normal user accounts)

Dependencies:

  • autoconf
  • automake
  • build-essential
  • cmake
  • git
  • libass-dev
  • libbz2-dev
  • libfontconfig1-dev
  • libfreetype6-dev
  • libfribidi-dev
  • libharfbuzz-dev
  • libjansson-dev
  • libmp3lame-dev
  • libogg-dev
  • libopus-dev
  • libsamplerate-dev
  • libtheora-dev
  • libtool
  • libvorbis-dev
  • libx264-dev
  • libxml2-dev
  • m4
  • make
  • patch
  • pkg-config
  • python
  • tar
  • yasm
  • zlib1g-dev

Additional Ubuntu 18.04 LTS and 16.04 LTS dependencies:

  • libtool-bin

Graphical interface dependencies:

  • intltool
  • libappindicator-dev
  • libdbus-glib-1-dev
  • libglib2.0-dev
  • libgstreamer1.0-dev
  • libgstreamer-plugins-base1.0-dev
  • libgtk-3-dev
  • libgudev-1.0-dev
  • libnotify-dev
  • libwebkitgtk-3.0-dev

Install dependencies.

sudo apt-get update
sudo apt-get install autoconf automake build-essential cmake git libass-dev libbz2-dev libfontconfig1-dev libfreetype6-dev libfribidi-dev libharfbuzz-dev libjansson-dev libmp3lame-dev libogg-dev libopus-dev libsamplerate-dev libtheora-dev libtool libvorbis-dev libx264-dev libxml2-dev m4 make patch pkg-config python tar yasm zlib1g-dev

If you are running Ubuntu 18.04 LTS or 16.04 LTS, install the additional dependencies.

sudo apt-get install libtool-bin

To build the GTK [GUI](abbr:Graphical User Interface), install the graphical interface dependencies.

sudo apt-get install intltool libappindicator-dev libdbus-glib-1-dev libglib2.0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgtk-3-dev libgudev-1.0-dev libnotify-dev libwebkitgtk-3.0-dev

Ubuntu is now prepared to build HandBrake. See Building HandBrake for Linux for further instructions.