From 642c6cc4874c767fb388575135eb1dfbe925576f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Wed, 17 Nov 2021 16:13:47 +0100 Subject: [PATCH] README: add first step to build and run GPS --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2119459 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# GStPipelineStudio: Draw your own GStreamer pipeline ... + +## Setup + +Install the Rust toolchain via `rustup` + +```sh +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh +``` + +Check https://rustup.rs for alternative installation options. + +### Ubuntu/Debian/etc + +```sh +apt install libgtk-3-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev +``` + +### Fedora/RedHat/SuSE/etc + +```sh +dnf install gtk3-devel gstreamer1-devel gstreamer1-plugins-base-devel +``` + +## Getting started + +```sh +cargo run +```