/** * **smartmontools** - SMART hard drive monitoring * * @domain `smartmontools.org` * @programs `smartctl`, `smartd` * @version `7.5.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install smartmontools.org` * @homepage https://www.smartmontools.org/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.smartmontoolsorg * console.log(pkg.name) // "smartmontools" * console.log(pkg.description) // "SMART hard drive monitoring" * console.log(pkg.programs) // ["smartctl", "smartd"] * console.log(pkg.versions[0]) // "7.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/smartmontools-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const smartmontoolsorgPackage: { /** * The display name of this package. */ name: 'smartmontools'; /** * The canonical domain name for this package. */ domain: 'smartmontools.org'; /** * Brief description of what this package does. */ description: 'SMART hard drive monitoring'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/smartmontools.org/package.yml'; homepageUrl: 'https://www.smartmontools.org/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install smartmontools.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +smartmontools.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install smartmontools.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['smartctl', 'smartd']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.5.0', '7.4.0', '7.3.0']; aliases: readonly [] }; export type SmartmontoolsorgPackage = typeof smartmontoolsorgPackage