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>
19 lines
554 B
Makefile
19 lines
554 B
Makefile
################################################################################
|
|
#
|
|
# bonnie
|
|
#
|
|
################################################################################
|
|
|
|
BONNIE_VERSION = 1.03e
|
|
BONNIE_SOURCE = bonnie++-$(BONNIE_VERSION).tgz
|
|
BONNIE_SITE = http://www.coker.com.au/bonnie++
|
|
BONNIE_LICENSE = GPLv2
|
|
BONNIE_LICENSE_FILES = copyright.txt
|
|
|
|
define BONNIE_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 755 $(@D)/bonnie++ $(TARGET_DIR)/usr/sbin/bonnie++
|
|
$(INSTALL) -D -m 755 $(@D)/zcav $(TARGET_DIR)/usr/sbin/zcav
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|