ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.75 kB
TypeScript
/**
* **intltool** - String tool
*
* @domain `freedesktop.org/intltool`
* @programs `intltool-extract`, `intltool-merge`, `intltool-prepare`, `intltool-update`, `intltoolize`, ... (+4 more)
* @version `0.51.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +freedesktop.org/intltool -- $SHELL -i`
* @dependencies `perl.org~5`, `linux:libexpat.github.io^2.6` (includes OS-specific dependencies with `os:package` format)
* @companions `PERL5LIB^${{prefix}}/lib/perl5:{{prefix}}/libexec/lib/perl5:$PERL5LIB`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.freedesktoporgintltool
* console.log(pkg.name) // "intltool"
* console.log(pkg.description) // "String tool"
* console.log(pkg.programs) // ["intltool-extract", "intltool-merge", ...]
* console.log(pkg.versions[0]) // "0.51.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/freedesktop-org/intltool.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const freedesktoporgintltoolPackage: {
/**
* The display name of this package.
*/
name: 'intltool';
/**
* The canonical domain name for this package.
*/
domain: 'freedesktop.org/intltool';
/**
* Brief description of what this package does.
*/
description: 'String tool';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/intltool/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +freedesktop.org/intltool -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['intltool-extract', 'intltool-merge', 'intltool-prepare', 'intltool-update', 'intltoolize', 'lwp-download', 'lwp-dump', 'lwp-mirror', 'lwp-request'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['PERL5LIB^${{prefix}}/lib/perl5:{{prefix}}/libexec/lib/perl5:$PERL5LIB'];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['perl.org~5', 'linux:libexpat.github.io^2.6'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.51.0'];
aliases: readonly []
};
export type FreedesktoporgintltoolPackage = typeof freedesktoporgintltoolPackage