e81d33944f
Multicat select bitstream package without adding it as build dependencies. Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
710 B
Makefile
26 lines
710 B
Makefile
################################################################################
|
|
#
|
|
# multicat
|
|
#
|
|
################################################################################
|
|
|
|
MULTICAT_VERSION = 2.1
|
|
MULTICAT_SOURCE = multicat-$(MULTICAT_VERSION).tar.bz2
|
|
MULTICAT_SITE = https://get.videolan.org/multicat/$(MULTICAT_VERSION)
|
|
MULTICAT_LICENSE = GPLv2+
|
|
MULTICAT_LICENSE_FILES = COPYING
|
|
|
|
MULTICAT_DEPENDENCIES = bitstream
|
|
|
|
MULTICAT_MAKE_ENV = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS)
|
|
|
|
define MULTICAT_BUILD_CMDS
|
|
$(MULTICAT_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define MULTICAT_INSTALL_TARGET_CMDS
|
|
$(MULTICAT_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) PREFIX=/usr install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|