blob: 9ac21ad1ecaf949cee1c971d0e279d48c993aba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#############################################################
#
# ramspeed
#
#############################################################
RAMSPEED_VERSION = 2.6.0
RAMSPEED_SITE = http://www.alasir.com/software/ramspeed
RAMSPEED_ARCH = $(if $(BR2_i386),i386)$(if $(BR2_x86_64),x86_64)
define RAMSPEED_BUILD_CMDS
cp -f package/ramspeed/Makefile $(@D)
CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
make -C $(@D) $(RAMSPEED_ARCH)
endef
define RAMSPEED_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/ramspeed $(TARGET_DIR)/usr/bin/ramspeed
endef
$(eval $(call GENTARGETS))
|