mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 11:26:29 -04:00
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/
21 lines
556 B
Makefile
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>
|