mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-26 08:40:33 +00:00
22 lines
641 B
Makefile
22 lines
641 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="memtester"
|
|
PKG_VERSION="4.7.1"
|
|
PKG_SHA256="e427de663f7bd22d1ebee8af12506a852c010bd4fcbca1e0e6b02972d298b5bb"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://pyropus.ca/software/memtester/"
|
|
PKG_URL="http://pyropus.ca/software/memtester/old-versions/memtester-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A userspace utility for testing the memory subsystem for faults."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
make_target() {
|
|
make memtester
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
cp memtester ${INSTALL}/usr/bin
|
|
}
|