996067d6b3
git-svn-id: svn://svn.openwrt.org/openwrt/packages@15244 3c298f89-4303-0410-b956-a3cf2f4a3e73
41 lines
880 B
Makefile
41 lines
880 B
Makefile
#
|
|
# Copyright (C) 2007-2008 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:=sdparm
|
|
PKG_VERSION:=1.03
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://sg.torque.net/sg/p/
|
|
PKG_MD5SUM:=12ccf6df3ce677437bfd1bc3bebd4d25
|
|
|
|
PKG_FIXUP = libtool
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/sdparm
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Read or modify SCSI or USB disk parameters
|
|
DEPENDS:=+kmod-scsi-generic
|
|
SUBMENU:=disc
|
|
endef
|
|
|
|
define Package/sdparm/description
|
|
The sdparm utility outputs and in some cases modifies SCSI device
|
|
parameters.
|
|
endef
|
|
|
|
define Package/sdparm/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,sdparm))
|