16 lines
496 B
Plaintext
16 lines
496 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 libxdg-basedir pango xorg-libxinerama xorg-libxrandr xorg-libxscrnsaver
|
||
|
|
||
|
name=dunst
|
||
|
version=1.3.2
|
||
|
release=1
|
||
|
source=(https://github.com/dunst-project/$name/archive/v$version/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
make
|
||
|
make PREFIX=/usr DESTDIR=$PKG install
|
||
|
}
|