mirror of
https://invent.kde.org/multimedia/kdenlive.git
synced 2025-07-16 19:10:12 +00:00
Add Arch Linux build instructions
I added some instructions on how to get a build environment for Arch Linux. I figured if it's specifically named as being supported for building it would make sense to have some information on how to build under it.
This commit is contained in:
parent
4da56479c4
commit
cbb54eeb1c
1 changed files with 12 additions and 0 deletions
|
@ -29,7 +29,11 @@ sudo apt update
|
|||
It is recommended to uninstall the official kdenlive packages to avoid potential conflicts.
|
||||
|
||||
```bash
|
||||
# Debian/Ubuntu
|
||||
sudo apt remove kdenlive kdenlive-data
|
||||
|
||||
# Arch Linux
|
||||
sudo pacman -R kdenlive
|
||||
```
|
||||
|
||||
|
||||
|
@ -39,9 +43,15 @@ sudo apt remove kdenlive kdenlive-data
|
|||
First, make sure you have the required tooling installed:
|
||||
|
||||
```bash
|
||||
# Debian/Ubuntu
|
||||
sudo apt install build-essential git cmake extra-cmake-modules libsm-dev clang-format
|
||||
# Optional for faster builds install Ninja
|
||||
sudo apt install ninja-build
|
||||
|
||||
# Arch Linux
|
||||
sudo pacman -S base-devel git cmake extra-cmake-modules libx11
|
||||
# Optional for faster builds install Ninja
|
||||
sudo pacman -S ninja
|
||||
```
|
||||
|
||||
You can use your distribution packages information (if not too old) to easily get a complete build environment:
|
||||
|
@ -49,6 +59,8 @@ You can use your distribution packages information (if not too old) to easily ge
|
|||
```bash
|
||||
# Debian/Ubuntu -- Enable deb-src entries /etc/apt/sources beforehand
|
||||
sudo apt build-dep mlt kdenlive
|
||||
# Arch Linux -- Install expac beforehand
|
||||
sudo pacman -S $(expac -S "%D" mlt) $(expac -S "%D" kdenlive)
|
||||
# Fedora/CentOS -- Install builddep beforehand
|
||||
dnf builddep mlt kdenlive
|
||||
# OpenSUSE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue