ports/devel/kdsingleapplication/Makefile
Daniel Engberg 3d482f736e devel/kdsingleapplication: New port: Class that helps implement applications that follow the single-instance policy
Class that helps implement applications that follow the single-instance
policy referring to those applications that want to spawn a unique
instance for a given user session. Even when launched multiple times,
such applications will not spawn a number of separate instances.

WWW: https://github.com/KDAB/KDSingleApplication/
2024-09-01 16:38:05 +02:00

21 lines
556 B
Makefile

PORTNAME= kdsingleapplication
DISTVERSION= 1.1.0
CATEGORIES= devel
MASTER_SITES= https://github.com/KDAB/KDSingleApplication/releases/download/v${DISTVERSION}/
MAINTAINER= diizzy@FreeBSD.org
COMMENT= KDAB's helper class for single-instance policy applications
WWW= https://github.com/KDAB/KDSingleApplication
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= cmake compiler:c++17-lang qt:6
USE_QT= base
USE_LDCONFIG= yes
CMAKE_OFF= CMAKE_CXX_EXTENSIONS \
KDSingleApplication_EXAMPLES
CMAKE_ON= KDSingleApplication_QT6
.include <bsd.port.mk>