17 lines
538 B
Plaintext
17 lines
538 B
Plaintext
# Description: A lightweight replacement for the notification daemons provided by most desktop environments
|
|
# URL: https://dunst-project.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: dbus gdk-pixbuf pango xorg-libxinerama xorg-libxrandr xorg-libxscrnsaver libnotify
|
|
|
|
name=dunst
|
|
version=1.10.0
|
|
release=1
|
|
source=(https://github.com/dunst-project/$name/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
export WAYLAND=0
|
|
cd $name-$version
|
|
make
|
|
make PREFIX=/usr SYSCONFDIR=/etc DESTDIR=$PKG install
|
|
}
|