treewide: remove AUTORELEASE
[feed/packages.git] / utils / hdparm / Makefile
1 #
2 # Copyright (C) 2006-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=hdparm
11 PKG_VERSION:=9.65
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
16 PKG_HASH:=d14929f910d060932e717e9382425d47c2e7144235a53713d55a94f7de535a4b
17
18 PKG_MAINTAINER:=
19 PKG_LICENSE:=BSD-Style Open Source License
20 PKG_LICENSE_FILES:=LICENSE.TXT
21
22 PKG_INSTALL:=1
23 PKG_BUILD_PARALLEL:=1
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/hdparm
28 SECTION:=utils
29 CATEGORY:=Utilities
30 SUBMENU:=Disc
31 TITLE:=Hard disk drive configuration utilitity
32 URL:=https://sourceforge.net/projects/hdparm/
33 endef
34
35 define Package/hdparm/description
36 get/set SATA/IDE device parameters
37 endef
38
39 define Package/hdparm/install
40 $(INSTALL_DIR) $(1)/sbin
41 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/hdparm $(1)/sbin
42 endef
43
44 $(eval $(call BuildPackage,hdparm))