vanhofen
4 years ago
3 changed files with 54 additions and 47 deletions
@ -0,0 +1,26 @@ |
|||||
|
################################################################################
|
||||
|
#
|
||||
|
# minicom
|
||||
|
#
|
||||
|
################################################################################
|
||||
|
|
||||
|
MINICOM_VERSION = 2.7.1 |
||||
|
MINICOM_DIR = minicom-$(MINICOM_VERSION) |
||||
|
MINICOM_SOURCE = minicom-$(MINICOM_VERSION).tar.gz |
||||
|
MINICOM_SITE = http://fossies.org/linux/misc |
||||
|
|
||||
|
$(DL_DIR)/$(MINICOM_SOURCE): |
||||
|
$(download) $(MINICOM_SITE)/$(MINICOM_SOURCE) |
||||
|
|
||||
|
MINICOM_DEPENDENCIES = ncurses |
||||
|
|
||||
|
MINICOM_CONF_OPTS = \
|
||||
|
--disable-nls |
||||
|
|
||||
|
define MINICOM_TARGET_CLEANUP |
||||
|
$(TARGET_RM) $(addprefix $(TARGET_bindir)/,ascii-xfr runscript xminicom) |
||||
|
endef |
||||
|
MINICOM_TARGET_FINALIZE_HOOKS += MINICOM_TARGET_CLEANUP |
||||
|
|
||||
|
minicom: | $(TARGET_DIR) |
||||
|
$(call autotools-package) |
@ -0,0 +1,28 @@ |
|||||
|
################################################################################
|
||||
|
#
|
||||
|
# smartmontools
|
||||
|
#
|
||||
|
################################################################################
|
||||
|
|
||||
|
SMARTMONTOOLS_VERSION = 7.1 |
||||
|
SMARTMONTOOLS_DIR = smartmontools-$(SMARTMONTOOLS_VERSION) |
||||
|
SMARTMONTOOLS_SOURCE = smartmontools-$(SMARTMONTOOLS_VERSION).tar.gz |
||||
|
SMARTMONTOOLS_SITE = https://sourceforge.net/projects/smartmontools/files/smartmontools/$(SMARTMONTOOLS_VERSION) |
||||
|
|
||||
|
SMARTMONTOOLS_CONF_OPTS = \
|
||||
|
--docdir=$(REMOVE_docdir) \
|
||||
|
--with-drivedbdir=no \
|
||||
|
--with-initscriptdir=no \
|
||||
|
--with-smartdplugindir=no \
|
||||
|
--with-smartdscriptdir=$(REMOVE_sysconfdir) \
|
||||
|
--with-update-smart-drivedb=no \
|
||||
|
--without-gnupg |
||||
|
|
||||
|
define SMARTMONTOOLS_TARGET_CLEANUP |
||||
|
$(TARGET_RM) $(TARGET_sysconfdir)/smartd.conf |
||||
|
$(TARGET_RM) $(TARGET_sbindir)/smartd |
||||
|
endef |
||||
|
SMARTMONTOOLS_TARGET_FINALIZE_HOOKS += SMARTMONTOOLS_TARGET_CLEANUP |
||||
|
|
||||
|
smartmontools: | $(TARGET_DIR) |
||||
|
$(call autotools-package) |
Loading…
Reference in new issue