mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-08-06 00:32:15 +00:00
18 lines
681 B
Makefile
18 lines
681 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="hdparm"
|
|
PKG_VERSION="9.60"
|
|
PKG_SHA256="8397739c73e44d5ab96c4aef28fa9c0147276d53a1b5657ce04c4565cf6635cc"
|
|
PKG_LICENSE="BSD"
|
|
PKG_SITE="http://sourceforge.net/projects/hdparm/"
|
|
PKG_URL="${SOURCEFORGE_SRC}/${PKG_NAME}/${PKG_NAME}/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Shell utility to access/tune ioctl features of the Linux IDE driver and IDE drives."
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/sbin
|
|
cp -a ${PKG_BUILD}/hdparm ${INSTALL}/usr/sbin
|
|
}
|