SwayNotificationCenter/PKGBUILD

22 lines
473 B
Bash
Raw Normal View History

2021-07-30 19:59:06 +03:00
pkgname=swaync
pkgver=0.1
pkgrel=1
pkgdesc="A simple notificaion daemon with a GTK panel"
2021-07-30 22:55:45 +03:00
pkgfoldername=SwayNotificationCenter
url="https://github.com/ErikReider/$pkgfoldername"
2021-07-30 19:59:06 +03:00
arch=(x86_64)
license=(GPL)
depends=(gtk3 gtk-layer-shell dbus)
makedepends=(vala meson git)
2021-07-30 22:55:45 +03:00
source=("git+https://github.com/ErikReider/$pkgfoldername")
2021-07-30 19:59:06 +03:00
sha256sums=('SKIP')
build() {
2021-07-30 22:55:45 +03:00
arch-meson $pkgfoldername build
2021-07-30 19:59:06 +03:00
ninja -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
}