ts-pkgx
Version:
A library & CLI for managing packages
70 lines • 2.61 kB
TypeScript
/**
* **po4a.org** - Maintain the translations of your documentation with ease (PO for anything)
*
* @domain `po4a.org`
* @programs `msguntypot`, `po4a`, `po4a-display-man`, `po4a-display-pod`, `po4a-gettextize`, ... (+3 more)
* @version `0.73.0` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +po4a.org -- $SHELL -i`
* @dependencies `gnu.org/gettext^0.22`, `perl.org^5.22`, `gnome.org/libxslt^1.1`
* @companions `PERL5LIB^${{prefix}}/libexec/lib/perl5:$PERL5LIB`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.po4aorg
* console.log(pkg.name) // "po4a.org"
* console.log(pkg.description) // "Maintain the translations of your documentation..."
* console.log(pkg.programs) // ["msguntypot", "po4a", ...]
* console.log(pkg.versions[0]) // "0.73.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/po4a-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const po4aorgPackage: {
/**
* The display name of this package.
*/
name: 'po4a.org';
/**
* The canonical domain name for this package.
*/
domain: 'po4a.org';
/**
* Brief description of what this package does.
*/
description: 'Maintain the translations of your documentation with ease (PO for anything)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/po4a.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 +po4a.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['msguntypot', 'po4a', 'po4a-display-man', 'po4a-display-pod', 'po4a-gettextize', 'po4a-normalize', 'po4a-updatepo', 'podselect'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['PERL5LIB^${{prefix}}/libexec/lib/perl5:$PERL5LIB'];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['gnu.org/gettext^0.22', 'perl.org^5.22', 'gnome.org/libxslt^1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.73.0', '0.72.0', '0.71.0', '0.70.0', '0.69.0'];
aliases: readonly []
};
export type Po4aorgPackage = typeof po4aorgPackage