Skip to content

Commit

Permalink
Merge pull request conda-forge#15074 from jan-janssen/smartmontools
Browse files Browse the repository at this point in the history
  • Loading branch information
xhochy authored May 29, 2021
2 parents 3d35fda + 880771f commit d369fac
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
3 changes: 3 additions & 0 deletions recipes/smartmontools/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
./configure --prefix=${PREFIX} --sbindir=${PREFIX}/bin
make
make install
42 changes: 42 additions & 0 deletions recipes/smartmontools/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{% set name = "smartmontools" %}
{% set version = "7.2" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/{{ name }}/{{ name }}/releases/download/RELEASE_{{ version[0] }}_{{ version[2] }}/{{ name }}-{{ version }}.tar.gz
sha256: 5cd98a27e6393168bc6aaea070d9e1cd551b0f898c52f66b2ff2e5d274118cd6

build:
number: 0
skip: true # [win]

requirements:
build:
- make
- {{ compiler('cxx') }}

test:
commands:
- smartctl --help
- smartd --help

about:
home: https://www.smartmontools.org
license: GPL-2.0-or-later
license_family: GPL
license_file: COPYING
summary: 'S.M.A.R.T. Monitoring Tools'
description: |
The smartmontools package contains two utility programs (smartctl and
smartd) to control and monitor storage systems using the
Self-Monitoring, Analysis and Reporting Technology System (SMART)
built into most modern ATA/SATA, SCSI/SAS and NVMe disks.
doc_url: https://www.smartmontools.org/wiki/TocDoc
dev_url: https://www.smartmontools.org/browser/trunk/smartmontools

extra:
recipe-maintainers:
- jan-janssen

0 comments on commit d369fac

Please sign in to comment.