mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
95a5ed7545
readline is not a dependency since bump to version 0.15.0 in commitcbd06adac5
and978b503840
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
41 lines
991 B
Makefile
41 lines
991 B
Makefile
################################################################################
|
|
#
|
|
# gstd
|
|
#
|
|
################################################################################
|
|
|
|
GSTD_VERSION = 0.15.0
|
|
GSTD_SITE = $(call github,RidgeRun,gstd-1.x,v$(GSTD_VERSION))
|
|
GSTD_LICENSE_FILES = COPYING
|
|
GSTD_LICENSE = LGPL-2.1+
|
|
|
|
GSTD_DEPENDENCIES = \
|
|
$(BR2_COREUTILS_HOST_DEPENDENCY) \
|
|
gstreamer1 \
|
|
jansson \
|
|
json-glib \
|
|
libdaemon \
|
|
libedit \
|
|
libglib2 \
|
|
libsoup
|
|
|
|
GSTD_CONF_OPTS = \
|
|
-Denable-tests=disabled \
|
|
-Denable-examples=disabled \
|
|
-Denable-gtk-doc=false \
|
|
-Denable-python=disabled \
|
|
-Dwith-gstd-runstatedir=/var/run/gstd \
|
|
-Dwith-gstd-logstatedir=/var/log/gstd \
|
|
-Dwith-gstd-systemddir=/usr/lib/systemd/system
|
|
|
|
GSTD_CFLAGS = $(TARGET_CFLAGS) -std=gnu99
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
GSTD_CONF_OPTS += -Denable-systemd=enabled -Denable-initd=disabled
|
|
GSTD_DEPENDENCIES += systemd
|
|
else
|
|
GSTD_CONF_OPTS += -Denable-systemd=disabled -Denable-initd=enabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|