353e449d96
Note: no documentation included yet, we don't have the tools Awesome v4.3 is the third release of the 4.x API. It comes after one and a half years of little fixes and improvements. Awesome v4.2 was very stable thanks to everybody's effort to unit test everything. Given no major bug warranted a new release, this one adds a few large features while preserving full compatibility with existing user configurations. Some highlights: - Better DPI handling - Extendable awful.rules providers and better awful.spawn functions - A brand new keygrabber API - A new GTK color palette based theme - Widgets improvements
24 lines
459 B
Makefile
24 lines
459 B
Makefile
# $NetBSD: options.mk,v 1.3 2019/07/17 22:08:58 nia Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.awesome
|
|
PKG_SUPPORTED_OPTIONS= dbus debug
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### DBus support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mdbus)
|
|
CMAKE_ARGS+= -DWITH_DBUS=ON
|
|
. include "../../sysutils/dbus/buildlink3.mk"
|
|
.else
|
|
CMAKE_ARGS+= -DWITH_DBUS=OFF
|
|
.endif
|
|
|
|
###
|
|
### Debug support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
. include "../../devel/libexecinfo/buildlink3.mk"
|
|
.endif
|