Commit f68dfa42 authored by Erik Reider's avatar Erik Reider

Require vala >= 0.56

parent e592a53b
...@@ -15,7 +15,7 @@ license=(GPL3) ...@@ -15,7 +15,7 @@ license=(GPL3)
depends=("gtk3" "gtk-layer-shell" "dbus" "glib2" "gobject-introspection" "libgee" "json-glib" "libhandy" "libpulse" "gvfs" "libnotify") depends=("gtk3" "gtk-layer-shell" "dbus" "glib2" "gobject-introspection" "libgee" "json-glib" "libhandy" "libpulse" "gvfs" "libnotify")
conflicts=("swaync" "swaync-client") conflicts=("swaync" "swaync-client")
provides=("swaync" "swaync-client" "notification-daemon") provides=("swaync" "swaync-client" "notification-daemon")
makedepends=(vala meson git scdoc sassc) makedepends=("vala>=0.56" meson git scdoc sassc)
source=("${_pkgfoldername}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz") source=("${_pkgfoldername}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('3f00bc858b7b3610e88ef0f6ee64d727892dd82f280f1dfc01dde863c2ea3376') sha256sums=('3f00bc858b7b3610e88ef0f6ee64d727892dd82f280f1dfc01dde863c2ea3376')
......
...@@ -15,7 +15,7 @@ license=('GPL3') ...@@ -15,7 +15,7 @@ license=('GPL3')
depends=("gtk3" "gtk-layer-shell" "dbus" "glib2" "gobject-introspection" "libgee" "json-glib" "libhandy" "libpulse" "gvfs" "libnotify") depends=("gtk3" "gtk-layer-shell" "dbus" "glib2" "gobject-introspection" "libgee" "json-glib" "libhandy" "libpulse" "gvfs" "libnotify")
conflicts=("swaync" "swaync-client") conflicts=("swaync" "swaync-client")
provides=("swaync" "swaync-client" "notification-daemon") provides=("swaync" "swaync-client" "notification-daemon")
makedepends=(vala meson git scdoc sassc) makedepends=("vala>=0.56" meson git scdoc sassc)
source=("$_pkgname::git+$url") source=("$_pkgname::git+$url")
sha256sums=('SKIP') sha256sums=('SKIP')
......
...@@ -14,7 +14,7 @@ VCS: {{{ git_dir_vcs }}} ...@@ -14,7 +14,7 @@ VCS: {{{ git_dir_vcs }}}
Source: {{{ git_dir_pack }}} Source: {{{ git_dir_pack }}}
BuildRequires: meson >= 0.51.0 BuildRequires: meson >= 0.51.0
BuildRequires: vala BuildRequires: vala >= 0.56
BuildRequires: scdoc BuildRequires: scdoc
BuildRequires: pkgconfig(gtk+-3.0) >= 3.22 BuildRequires: pkgconfig(gtk+-3.0) >= 3.22
BuildRequires: pkgconfig(gtk-layer-shell-0) >= 0.1 BuildRequires: pkgconfig(gtk-layer-shell-0) >= 0.1
......
...@@ -67,6 +67,8 @@ app_sources = [ ...@@ -67,6 +67,8 @@ app_sources = [
constants, constants,
] ]
assert(meson.get_compiler('vala').version() >= '0.56')
app_deps = [ app_deps = [
dependency('gio-2.0', version: '>= 2.50'), dependency('gio-2.0', version: '>= 2.50'),
dependency('gio-unix-2.0', version: '>= 2.50'), dependency('gio-unix-2.0', version: '>= 2.50'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment