mirror of
https://github.com/ErikReider/SwayNotificationCenter.git
synced 2024-12-01 20:03:44 +03:00
25 lines
818 B
Bash
25 lines
818 B
Bash
# Maintainer: Erik Reider <erik.reider@protonmail.com>
|
|
pkgname=swaync
|
|
pkgver=0.4
|
|
pkgrel=1
|
|
pkgdesc="A simple notificaion daemon with a GTK panel for checking previous notifications like other DE's"
|
|
_pkgfoldername=SwayNotificationCenter
|
|
url="https://github.com/ErikReider/$_pkgfoldername"
|
|
arch=(x86_64)
|
|
license=(GPL)
|
|
depends=("gtk3>=3.22" "gtk-layer-shell>=0.1" "dbus" "glib2>=2.50" "gobject-introspection>=1.68" "libgee>=0.20" "json-glib>=1.0" "libhandy>=1.4.0")
|
|
conflicts=("swaync" "swaync-client")
|
|
provides=("swaync" "swaync-client")
|
|
makedepends=(vala meson git)
|
|
source=("${_pkgfoldername}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
arch-meson "${_pkgfoldername}-${pkgver}" build -Dscripting=true
|
|
ninja -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install -C build
|
|
}
|