ddc2285ff2
multicat is a simple and efficient multicast and transport stream manipulation tool. Signed-off-by: Julian Scheel <julian@jusst.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
675 B
Makefile
24 lines
675 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_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))
|