You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
661 B
23 lines
661 B
################################################################################
|
|
#
|
|
# hd-idle
|
|
#
|
|
################################################################################
|
|
|
|
HD_IDLE_VERSION = 1.05
|
|
HD_IDLE_DIR = hd-idle
|
|
HD_IDLE_SOURCE = hd-idle-$(HD_IDLE_VERSION).tgz
|
|
HD_IDLE_SITE = https://sourceforge.net/projects/hd-idle/files
|
|
|
|
$(DL_DIR)/$(HD_IDLE_SOURCE):
|
|
$(download) $(HD_IDLE_SITE)/$(HD_IDLE_SOURCE)
|
|
|
|
hd-idle: $(DL_DIR)/$(HD_IDLE_SOURCE) | $(TARGET_DIR)
|
|
$(REMOVE)/$(PKG_DIR)
|
|
$(UNTAR)/$(PKG_SOURCE)
|
|
$(CHDIR)/$(PKG_DIR); \
|
|
$(TARGET_CONFIGURE_ENV) \
|
|
$(MAKE); \
|
|
$(INSTALL_EXEC) -D hd-idle $(TARGET_sbindir)/hd-idle
|
|
$(REMOVE)/$(PKG_DIR)
|
|
$(TOUCH)
|
|
|