ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.13 kB
TypeScript
/**
* **gperf** - Perfect hash function generator
*
* @domain `gnu.org/gperf`
* @programs `gperf`
* @version `3.3.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gperf`
* @name `gperf`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gperf
* // Or access via domain
* const samePkg = pantry.gnuorggperf
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gperf"
* console.log(pkg.description) // "Perfect hash function generator"
* console.log(pkg.programs) // ["gperf"]
* console.log(pkg.versions[0]) // "3.3.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/gperf.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gperfPackage: {
/**
* The display name of this package.
*/
name: 'gperf';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/gperf';
/**
* Brief description of what this package does.
*/
description: 'Perfect hash function generator';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/gperf/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gperf';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gperf'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.3.0', '3.2.1', '3.2.0', '3.1.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) gperf -- $SHELL -i';
launchpadInstallCommand: 'launchpad install gperf'
};
export type GperfPackage = typeof gperfPackage