5328048af0
[Thomas: - replicate the ffmpeg "depends on" related to the broken NIOS2 toolchains to the BR2_PACKAGE_SQUEEZELITE_FFMPEG option. - use the github helper function. - add hash file.] Signed-off-by: Hiroshi Kawashima <kei-k@ca2.so-net.ne.jp> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# squeezelite
|
|
#
|
|
################################################################################
|
|
|
|
SQUEEZELITE_VERSION = v1.8
|
|
SQUEEZELITE_SITE = $(call github,robadenshi,squeezelite,$(SQUEEZELITE_VERSION))
|
|
SQUEEZELITE_LICENSE = GPLv3
|
|
SQUEEZELITE_LICENSE_FILE = LICENSE.txt
|
|
SQUEEZELITE_DEPENDENCIES = alsa-lib flac libmad libvorbis faad2 mpg123
|
|
SQUEEZELITE_MAKE_OPTS = -DLINKALL
|
|
|
|
ifeq ($(BR2_PACKAGE_SQUEEZELITE_FFMPEG),y)
|
|
SQUEEZELITE_DEPENDENCIES += ffmpeg
|
|
SQUEEZELITE_MAKE_OPTS += -DFFMPEG
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SQUEEZELITE_DSD),y)
|
|
SQUEEZELITE_MAKE_OPTS += -DDSD
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SQUEEZELITE_RESAMPLE),y)
|
|
SQUEEZELITE_DEPENDENCIES += libsoxr
|
|
SQUEEZELITE_MAKE_OPTS += -DRESAMPLE
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SQUEEZELITE_VISEXPORT),y)
|
|
SQUEEZELITE_MAKE_OPTS += -DVISEXPORT
|
|
endif
|
|
|
|
define SQUEEZELITE_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
OPTS="$(SQUEEZELITE_MAKE_OPTS)" -C $(@D) all
|
|
endef
|
|
|
|
define SQUEEZELITE_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/squeezelite \
|
|
$(TARGET_DIR)/usr/bin/squeezelite
|
|
endef
|
|
|
|
$(eval $(generic-package))
|