Skip to content
Snippets Groups Projects
Commit ba61e81b authored by Jan de Groot's avatar Jan de Groot
Browse files

granite 0.5 rebuild

parent b3916527
Branches main
Tags 8.0.1-1
No related merge requests found
......@@ -3,7 +3,7 @@
pkgname=pantheon-videos
pkgver=0.2.4
pkgrel=1
pkgrel=2
pkgdesc='The Pantheon Video Player'
arch=('x86_64')
url='https://github.com/elementary/videos'
......@@ -20,14 +20,18 @@ optdepends=('gst-plugins-base: "Base" plugin libraries'
'gst-plugins-good: "Good" plugin libraries'
'gst-plugins-bad: "Bad" plugin libraries'
'gst-plugins-ugly: "Ugly" plugin libraries')
source=("pantheon-videos-${pkgver}.tar.gz::https://github.com/elementary/videos/archive/${pkgver}.tar.gz")
sha256sums=('b79c995cd48b4c4a5064a66673449f981ca5d1085e690c939544939061513a1f')
source=("pantheon-videos-${pkgver}.tar.gz::https://github.com/elementary/videos/archive/${pkgver}.tar.gz"
remove-glib-application-set-default.patch)
sha256sums=('b79c995cd48b4c4a5064a66673449f981ca5d1085e690c939544939061513a1f'
'eb95236f813defcd9b2cb4dc58299188d0a8556d77e20c253127d09af1759df9')
prepare() {
if [[ -d build ]]; then
rm -rf build
fi
mkdir build
cd videos-$pkgver
patch -Np1 -i ../remove-glib-application-set-default.patch
}
build() {
......
From c09f272d9f27e4c0d6671a70a9bee2f77ac9687b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Corentin=20No=C3=ABl?= <corentin@elementary.io>
Date: Sat, 4 Nov 2017 16:15:02 +0100
Subject: [PATCH] GLib.Application.set_default is useless when there is only
one instance (#47)
---
src/Audience.vala | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/Audience.vala b/src/Audience.vala
index 15dcb3b..557fd76 100644
--- a/src/Audience.vala
+++ b/src/Audience.vala
@@ -59,7 +59,6 @@ namespace Audience {
Gtk.Settings.get_default ().gtk_application_prefer_dark_theme = true;
this.flags |= GLib.ApplicationFlags.HANDLES_OPEN;
settings = new Settings ();
- set_default ();
}
private static App app; // global App instance
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment