ts-pkgx
Version:
A library & CLI for managing packages
67 lines • 2.53 kB
TypeScript
/**
* **linux-pam.org** - Linux PAM (Pluggable Authentication Modules for Linux) project
*
* @domain `linux-pam.org`
* @programs `faillock`, `mkhomedir_helper`, `pam_namespace_helper`, `pam_timestamp_check`, `unix_chkpwd`
* @version `1.7.1` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install linux-pam.org`
* @dependencies `github.com/thkukuk/libnsl`, `sourceforge.net/libtirpc`, `github.com/besser82/libxcrypt`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.linuxpamorg
* console.log(pkg.name) // "linux-pam.org"
* console.log(pkg.description) // "Linux PAM (Pluggable Authentication Modules for..."
* console.log(pkg.programs) // ["faillock", "mkhomedir_helper", ...]
* console.log(pkg.versions[0]) // "1.7.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/linux-pam-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const linuxpamorgPackage: {
/**
* The display name of this package.
*/
name: 'linux-pam.org';
/**
* The canonical domain name for this package.
*/
domain: 'linux-pam.org';
/**
* Brief description of what this package does.
*/
description: 'Linux PAM (Pluggable Authentication Modules for Linux) project';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/linux-pam.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install linux-pam.org';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['faillock', 'mkhomedir_helper', 'pam_namespace_helper', 'pam_timestamp_check', 'unix_chkpwd'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['github.com/thkukuk/libnsl', 'sourceforge.net/libtirpc', 'github.com/besser82/libxcrypt'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.7.1', '1.7.0', '1.6.1', '1.6.0', '1.5.3'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +linux-pam.org -- $SHELL -i';
launchpadInstallCommand: 'launchpad install linux-pam.org'
};
export type LinuxpamorgPackage = typeof linuxpamorgPackage