kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit b3b9ff3d7423a7cfd3c39ae4306a3337829d4ce1
parent e46fed52855abc9ce114c37fcaa705d5893764fa
Author: St John Karp <contact@stjo.hn>
Date:   Thu, 30 Jun 2022 06:02:51 -0400

gstreamer: Add package at version 1.16.2

Originally ported from eudaldgr/kiss-garbage with fixes so this
builds on a newer KISS system.

Diffstat:
Alibs/gstreamer/build | 12++++++++++++
Alibs/gstreamer/checksums | 1+
Alibs/gstreamer/depends | 3+++
Alibs/gstreamer/sources | 1+
Alibs/gstreamer/version | 1+
5 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/libs/gstreamer/build b/libs/gstreamer/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +meson \ + --prefix=/usr \ + -Dbuildtype=release \ + -Ddbghelp=disabled \ + -Dintrospection=enabled \ + -Dgtk_doc=disabled \ + . output + +ninja -C output +ninja -C output install diff --git a/libs/gstreamer/checksums b/libs/gstreamer/checksums @@ -0,0 +1 @@ +e3f044246783fd685439647373fa13ba14f7ab0b346eadd06437092f8419e94e diff --git a/libs/gstreamer/depends b/libs/gstreamer/depends @@ -0,0 +1,3 @@ +bison make +glib +meson make diff --git a/libs/gstreamer/sources b/libs/gstreamer/sources @@ -0,0 +1 @@ +https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.16.2.tar.xz diff --git a/libs/gstreamer/version b/libs/gstreamer/version @@ -0,0 +1 @@ +1.16.2 1