mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
https://code.videolan.org/videolan/dvblast/-/blob/3.5/NEWS Depends on bitstream >= 1.6. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
30 lines
830 B
Makefile
30 lines
830 B
Makefile
################################################################################
|
|
#
|
|
# dvblast
|
|
#
|
|
################################################################################
|
|
|
|
DVBLAST_VERSION = 3.5
|
|
DVBLAST_SOURCE = dvblast-$(DVBLAST_VERSION).tar.bz2
|
|
DVBLAST_SITE = https://get.videolan.org/dvblast/$(DVBLAST_VERSION)
|
|
DVBLAST_LICENSE = GPL-2.0+, 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))
|