mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
37 lines
778 B
Makefile
37 lines
778 B
Makefile
COMMENT = configuration files library for wayfire
|
|
|
|
V = 0.10.0
|
|
DISTNAME = wf-config-${V}
|
|
REVISION = 2
|
|
|
|
SHARED_LIBS += wf-config 0.2 # 0.0
|
|
CATEGORIES = wayland
|
|
|
|
MAINTAINER = Landry Breuil <landry@openbsd.org>
|
|
# MIT
|
|
PERMIT_PACKAGE =Yes
|
|
|
|
SITES = https://github.com/WayfireWM/wf-config/releases/download/v${V}/
|
|
EXTRACT_SUFX = .tar.xz
|
|
|
|
# C++17
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
MODULES = devel/meson
|
|
|
|
CONFIGURE_ARGS =-Dtests=disabled
|
|
|
|
# include/wayfire/config/types.hpp needs glm/vec4.hpp
|
|
RUN_DEPENDS += graphics/glm
|
|
BUILD_DEPENDS = wayland/libinput-openbsd \
|
|
wayland/wayland \
|
|
wayland/wayland-protocols \
|
|
devel/cmake/core \
|
|
graphics/glm
|
|
LIB_DEPENDS = textproc/libxml \
|
|
wayland/libevdev-openbsd>=20231111
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} evdev m xml2
|
|
|
|
.include <bsd.port.mk>
|