SHA256
1
0
forked from pool/screencast

Accepting request 556875 from X11:Pantheon

OBS-URL: https://build.opensuse.org/request/show/556875
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/screencast?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2018-01-10 22:32:14 +00:00 committed by Git OBS Bridge
commit 6533482f2b
5 changed files with 143 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
screencast-0.1.9.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:52b5a4824b5fe2ff9cddbbe34604c560780fa84a652e76d6eaff19a072c0d7b0
size 70639

16
screencast.changes Normal file
View File

@ -0,0 +1,16 @@
-------------------------------------------------------------------
Wed Nov 8 10:16:42 UTC 2017 - avvissu@yandex.by
- Update to 0.1.9:
* [FIX] Don't create a subfolder on every launch
* Recording microphone and desktop sounds at the same time
* Updated German Translation
* Added gschema.xml-file
- Switch from bzr to git
- Rename the package: eidete -> screencast
- Spec file cleanup
-------------------------------------------------------------------
Sat Feb 27 18:47:32 UTC 2016 - mailaender@opensuse.org
- initial packaging (version 0.2+r201) for build.opensuse.org

100
screencast.spec Normal file
View File

@ -0,0 +1,100 @@
#
# spec file for package screencast
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
Name: screencast
Version: 0.1.9
Release: 0
Summary: A simple screencasting application
License: GPL-3.0+
Group: Productivity/Multimedia/Video/Editors and Convertors
URL: https://launchpad.net/eidete
Source: https://github.com/artemanufrij/screencast/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: hicolor-icon-theme
BuildRequires: intltool
BuildRequires: pkgconfig
BuildRequires: update-desktop-files
BuildRequires: vala
BuildRequires: pkgconfig(gdk-x11-3.0)
BuildRequires: pkgconfig(granite)
BuildRequires: pkgconfig(gstreamer-1.0)
BuildRequires: pkgconfig(gstreamer-pbutils-1.0)
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(libwnck-3.0)
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xtst)
Recommends: %{name}-lang
Provides: eidete = %{version}
Obsoletes: eidete < %{version}
%glib2_gsettings_schema_requires
%description
A simple screencasting application for the elementary OS.
Current features:
* encoding to webm
* selection of the area to be recorded
* display of the pressed keys
* audio recording
%lang_package
%prep
%setup -q
sed -i 's/\bmetainfo\b/appdata/' $(grep -rwl 'metainfo')
%build
%cmake \
-DGSETTINGS_COMPILE=OFF
make %{?_smp_mflags}
%install
%cmake_install
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
mv %{buildroot}%{_datadir}/icons/hicolor/{,scalable/apps/}artemanufrij.screencast.svg
%suse_update_desktop_file -r com.github.artemanufrij.screencast GTK AudioVideo Video Recorder
%find_lang com.github.artemanufrij.screencast %{name}.lang
%fdupes %{buildroot}%{_datadir}
%post
%icon_theme_cache_post
%desktop_database_post
%glib2_gsettings_schema_post
%postun
%icon_theme_cache_postun
%desktop_database_postun
%glib2_gsettings_schema_postun
%files
%doc debian/copyright README.md
%{_bindir}/com.github.artemanufrij.screencast
%dir %{_datadir}/appdata
%{_datadir}/appdata/com.github.artemanufrij.screencast.appdata.xml
%{_datadir}/applications/com.github.artemanufrij.screencast.desktop
%{_datadir}/glib-2.0/schemas/com.github.artemanufrij.screencast.gschema.xml
%{_datadir}/icons/hicolor/*/apps/artemanufrij.screencast.??g
%files lang -f %{name}.lang
%changelog