c7f4b96471
Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk: $(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)) so it is redundant. This patch removes it from $(PKG)_SITE variable for BR consistency. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
540 B
Makefile
21 lines
540 B
Makefile
################################################################################
|
|
#
|
|
# gst-dsp
|
|
#
|
|
################################################################################
|
|
|
|
GST_DSP_VERSION = 0.10.2
|
|
GST_DSP_SITE = http://gst-dsp.googlecode.com/files
|
|
|
|
define GST_DSP_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e
|
|
endef
|
|
|
|
define GST_DSP_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
GST_DSP_DEPENDENCIES = gstreamer tidsp-binaries host-pkgconf
|
|
|
|
$(eval $(generic-package))
|