forked from conda-forge/staged-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request conda-forge#15074 from jan-janssen/smartmontools
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
./configure --prefix=${PREFIX} --sbindir=${PREFIX}/bin | ||
make | ||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |