mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 23:06:18 +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.65"
|
|
PKG_SHA256="d14929f910d060932e717e9382425d47c2e7144235a53713d55a94f7de535a4b"
|
|
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
|
|
}
|