mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
dvblast wants iconv functions even without locales.
Fixes:
http://autobuild.buildroot.org/results/03f/03fe6dc17d7f36d9b8c7ced402850def95d8feb3/
http://autobuild.buildroot.org/results/064/0647b0180ac9a6bf6172742e388df9a9e584d91b/
...
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Julian Scheel <julian@jusst.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
828 B
Makefile
30 lines
828 B
Makefile
################################################################################
|
|
#
|
|
# dvblast
|
|
#
|
|
################################################################################
|
|
|
|
DVBLAST_VERSION = 3.0
|
|
DVBLAST_SOURCE = dvblast-$(DVBLAST_VERSION).tar.bz2
|
|
DVBLAST_SITE = https://get.videolan.org/dvblast/$(DVBLAST_VERSION)
|
|
DVBLAST_LICENSE = GPLv2+, WTFPL
|
|
DVBLAST_LICENSE_FILES = COPYING COPYING.WTFPL
|
|
DVBLAST_DEPENDENCIES = bitstream libev
|
|
|
|
DVBLAST_MAKE_ENV = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
DVBLAST_DEPENDENCIES += libiconv
|
|
DVBLAST_MAKE_ENV += LDLIBS=-liconv
|
|
endif
|
|
|
|
define DVBLAST_BUILD_CMDS
|
|
$(DVBLAST_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define DVBLAST_INSTALL_TARGET_CMDS
|
|
$(DVBLAST_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) PREFIX=/usr install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|