forked from pool/vokoscreenNG
Takashi Iwai
c33b4d66cf
- Update to version 4.1.0 * Wayland: Added Snapshot * Wayland: Simple camera support based on pipewire * GUI: Better display when moving the mouse over the pushbuttons * Wayland: All existing settings will now be saved * Camera: Frameless works not under Linux Desktop MATE * Translation: Updated - Recommend "xdg-desktop-portal-wlr" to allow capture on Wayland OBS-URL: https://build.opensuse.org/request/show/1168582 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/vokoscreenNG?expand=0&rev=42
99 lines
3.2 KiB
RPMSpec
99 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package vokoscreenNG
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: vokoscreenNG
|
|
Version: 4.1.0
|
|
Release: 0
|
|
Summary: Screencast creator
|
|
License: GPL-2.0-only
|
|
Group: Productivity/Multimedia/Other
|
|
URL: https://github.com/vkohaupt/vokoscreenNG
|
|
Source: https://github.com/vkohaupt/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM - Add AppStream metadata - PR#94
|
|
Patch0: add_appstream_metadata.patch
|
|
BuildRequires: appstream-glib
|
|
BuildRequires: gstreamer-devel >= 1.22.8
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(Qt6Core) >= 6.6.0
|
|
BuildRequires: pkgconfig(Qt6DBus)
|
|
BuildRequires: pkgconfig(Qt6Gui)
|
|
BuildRequires: pkgconfig(Qt6Linguist)
|
|
BuildRequires: pkgconfig(Qt6Multimedia)
|
|
BuildRequires: pkgconfig(Qt6Network)
|
|
BuildRequires: pkgconfig(Qt6Test)
|
|
BuildRequires: pkgconfig(Qt6Widgets)
|
|
BuildRequires: pkgconfig(gstreamer-video-1.0)
|
|
BuildRequires: pkgconfig(libpulse)
|
|
|
|
%if 0%{?sle_version} && 0%{?sle_version} < 150300
|
|
Requires: pulseaudio
|
|
%else
|
|
Requires: pulseaudio-daemon
|
|
%endif
|
|
# Required for Wayland
|
|
Recommends: xdg-desktop-portal-wlr
|
|
# Required for vorbis and opus audio
|
|
Requires: gstreamer-plugins-base
|
|
# Required for mkv, avi, webm, mp4, vp8 video and flac audio
|
|
Requires: gstreamer-plugins-good
|
|
# Required for gif
|
|
Requires: gstreamer-plugins-rs
|
|
# Required for x265, av1, camera
|
|
Requires: gstreamer-plugins-bad
|
|
# Required for x264 and mp3lame
|
|
Requires: gstreamer-plugins-ugly
|
|
# Required for x264
|
|
Recommends: gstreamer-plugins-ugly-orig-addon
|
|
# Required for openh264
|
|
Recommends: gstreamer-plugins-bad-orig-addon
|
|
|
|
Provides: vokoscreen = %{version}
|
|
Obsoletes: vokoscreen < %{version}
|
|
|
|
%description
|
|
vokoscreenNG is a user friendly Open Source screencaster for Linux and Windows.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
cd src
|
|
%qmake6
|
|
%make_jobs
|
|
|
|
%install
|
|
mkdir -p %{buildroot}/usr/bin/
|
|
cp src/%{name} %{buildroot}/usr/bin/
|
|
mkdir -p %{buildroot}/usr/share/applications/
|
|
cp src/applications/%{name}.desktop %{buildroot}/usr/share/applications/
|
|
mkdir -p %{buildroot}/usr/share/pixmaps/
|
|
cp src/applications/%{name}.png %{buildroot}/usr/share/pixmaps/
|
|
mkdir -p %{buildroot}/usr/share/metainfo/
|
|
cp src/applications/vokoscreenNG.appdata.xml %{buildroot}/usr/share/metainfo/
|
|
|
|
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata.xml
|
|
|
|
%files
|
|
%license COPYING
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/pixmaps/%{name}.png
|
|
%{_datadir}/metainfo/%{name}.appdata.xml
|
|
|
|
%changelog
|