xref: /buildroot/package/lcdproc/lcdproc.mk
  • Home
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • current directory
1################################################################################
2#
3# lcdproc
4#
5################################################################################
6
7LCDPROC_VERSION = 0.5.9
8LCDPROC_SITE = https://github.com/lcdproc/lcdproc/releases/download/v$(LCDPROC_VERSION)
9LCDPROC_LICENSE = GPL-2.0+
10LCDPROC_LICENSE_FILES = COPYING
11LCDPROC_MAKE = $(MAKE1)
12
13LCDPROC_CONF_OPTS = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS)
14
15ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
16LCDPROC_CONF_OPTS += --enable-lcdproc-menus
17endif
18
19LCDPROC_DEPENDENCIES = freetype ncurses zlib
20
21LCDPROC_CONF_ENV += \
22	ac_cv_mtab_file=/etc/mtab \
23	ac_cv_path_FT2_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
24
25ifeq ($(BR2_PACKAGE_LIBPNG),y)
26LCDPROC_DEPENDENCIES += libpng
27LCDPROC_CONF_ENV += ac_cv_path__png_config=$(STAGING_DIR)/usr/bin/libpng-config
28LCDPROC_CONF_OPTS += --enable-libpng
29else
30LCDPROC_CONF_OPTS += --disable-libpng
31endif
32
33$(eval $(autotools-package))
34

Last Index update Fri Aug 22 08:59:00 CST 2025