1*4882a593Smuzhiyun################################################################################ 2*4882a593Smuzhiyun# 3*4882a593Smuzhiyun# multicat 4*4882a593Smuzhiyun# 5*4882a593Smuzhiyun################################################################################ 6*4882a593Smuzhiyun 7*4882a593SmuzhiyunMULTICAT_VERSION = 2.3 8*4882a593SmuzhiyunMULTICAT_SOURCE = multicat-$(MULTICAT_VERSION).tar.bz2 9*4882a593SmuzhiyunMULTICAT_SITE = https://get.videolan.org/multicat/$(MULTICAT_VERSION) 10*4882a593SmuzhiyunMULTICAT_LICENSE = GPL-2.0+ 11*4882a593SmuzhiyunMULTICAT_LICENSE_FILES = COPYING 12*4882a593Smuzhiyun 13*4882a593SmuzhiyunMULTICAT_DEPENDENCIES = bitstream 14*4882a593Smuzhiyun 15*4882a593Smuzhiyun# Makefile does not use LDFLAGS. Use LDLIBS for that instead. 16*4882a593SmuzhiyunMULTICAT_MAKE_ENV = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) \ 17*4882a593Smuzhiyun LDLIBS="$(TARGET_LDFLAGS)" 18*4882a593Smuzhiyun 19*4882a593Smuzhiyundefine MULTICAT_BUILD_CMDS 20*4882a593Smuzhiyun $(MULTICAT_MAKE_ENV) $(MAKE) -C $(@D) 21*4882a593Smuzhiyunendef 22*4882a593Smuzhiyun 23*4882a593Smuzhiyundefine MULTICAT_INSTALL_TARGET_CMDS 24*4882a593Smuzhiyun $(MULTICAT_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) PREFIX=/usr install 25*4882a593Smuzhiyunendef 26*4882a593Smuzhiyun 27*4882a593Smuzhiyun$(eval $(generic-package)) 28