2014-11-15 23:15:52 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2014 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=hdparm
|
2017-11-20 02:10:11 +00:00
|
|
|
PKG_VERSION:=9.52
|
2014-11-15 23:15:52 +00:00
|
|
|
PKG_RELEASE:=1
|
2014-11-25 19:32:49 +00:00
|
|
|
PKG_USE_MIPS16:=0
|
2014-11-15 23:15:52 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
|
2017-11-20 02:10:11 +00:00
|
|
|
PKG_HASH:=c3429cd423e271fa565bf584598fd751dd2e773bb7199a592b06b5a61cec4fb6
|
2014-11-15 23:15:52 +00:00
|
|
|
PKG_MAINTAINER:=Richard Kunze <richard.kunze@web.de>
|
|
|
|
PKG_LICENSE:=BSD-Style Open Source License
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2014-11-16 00:56:12 +00:00
|
|
|
TARGET_CFLAGS+=-D_GNU_SOURCE
|
|
|
|
|
2014-11-15 23:15:52 +00:00
|
|
|
define Package/hdparm
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2016-11-02 09:02:34 +00:00
|
|
|
SUBMENU:=Disc
|
2014-11-15 23:15:52 +00:00
|
|
|
TITLE:=Hard disk drive configuration utilitity
|
|
|
|
URL:=http://sourceforge.net/projects/hdparm/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/hdparm/description
|
|
|
|
get/set SATA/IDE device parameters
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/hdparm/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/sbin
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,hdparm))
|