e9f592c7f6
Desktop notifications, the UNIX way. tiramisu is a notification daemon based on dunst that outputs notifications to STDOUT in order to allow the user to process notifications any way they prefer. By allowing users to determine what is done with notifications, there is infinitely more possibilities presented to the end-user than a simple notification daemon that displays a block of text on the screen and nothing more. Users could have notifications display in a pre-existing bar, make a control panel of some sort that shows notifications, push notifications to their phone if their computer has been idle for an amount of time, make notifications more accessible with text-to-speech, and so much more.
26 lines
776 B
Makefile
26 lines
776 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/11/12 09:05:13 pin Exp $
|
|
|
|
DISTNAME= tiramisu-1.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=Sweets/}
|
|
#Build from a specific commit until upstream provides a new release
|
|
#Patch by Leonardo Taccari upstreamed and merged but, not included
|
|
#in the tag release
|
|
GITHUB_PROJECT= tiramisu
|
|
GITHUB_TAG= 8eb946dae0e2f98d3850d89e1bb535640e8c3266
|
|
|
|
MAINTAINER= pin@NetBSD.org
|
|
HOMEPAGE= https://github.com/Sweets/tiramisu/
|
|
COMMENT= Desktop notifications, the UNIX way
|
|
LICENSE= mit
|
|
|
|
USE_TOOLS+= pkg-config gmake
|
|
|
|
INSTALLATION_DIRS+= share/doc/tiramisu
|
|
MAKE_ENV+= PREFIX=${PREFIX}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/tiramisu
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|