mirror of
https://github.com/ErikReider/SwayNotificationCenter.git
synced 2024-11-25 06:27:08 +03:00
32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
# vim: ft=PKGBUILD
|
|
# Maintainer: Erik Reider <erik.reider@protonmail.com>
|
|
pkgname=swaync
|
|
pkgver=0.8.0
|
|
pkgrel=2
|
|
pkgdesc="A simple notificaion daemon with a GTK panel for checking previous notifications like other DEs"
|
|
_pkgfoldername=SwayNotificationCenter
|
|
url="https://github.com/ErikReider/$_pkgfoldername"
|
|
arch=(
|
|
'x86_64'
|
|
'aarch64' # ARM v8 64-bit
|
|
'armv7h' # ARM v7 hardfloat
|
|
)
|
|
license=(GPL3)
|
|
depends=("gtk3" "gtk-layer-shell" "dbus" "glib2" "gobject-introspection" "libgee" "json-glib" "libhandy" "libpulse")
|
|
conflicts=("swaync" "swaync-client")
|
|
provides=("swaync" "swaync-client" "notification-daemon")
|
|
makedepends=(vala meson git scdoc)
|
|
source=("${_pkgfoldername}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
|
|
sha256sums=('0640043fef600a5a494ac22f09e99118462e7ef2bdfd7fc85230b3e517bfc7d6')
|
|
|
|
build() {
|
|
arch-meson "${_pkgfoldername}-${pkgver}" build -Dscripting=true
|
|
ninja -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir/" ninja -C build install
|
|
install -Dm644 "$_pkgfoldername-$pkgver/COPYING" -t "$pkgdir/usr/share/licenses/$pkgname"
|
|
install -Dm644 "$_pkgfoldername-$pkgver/README.md" -t "$pkgdir/usr/share/doc/$pkgname"
|
|
}
|