/** * **po4a** - 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.74.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install po4a.org` * @homepage http://po4a.org/ * @dependencies `gnu.org/gettext^0.22`, `perl.org^5.22`, `gnome.org/libxslt^1.1` * @buildDependencies `cpanmin.us`, `docbook.org/xsl`, `curl.se` - required only when building from source * @companions `PERL5LIB^${{prefix}}/libexec/lib/perl5:$PERL5LIB` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.po4aorg * console.log(pkg.name) // "po4a" * console.log(pkg.description) // "Maintain the translations of your documentation..." * console.log(pkg.programs) // ["msguntypot", "po4a", ...] * console.log(pkg.versions[0]) // "0.74.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'; /** * 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: 'http://po4a.org/'; githubUrl: 'https://github.com/mquinson/po4a'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install po4a.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +po4a.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install po4a.org'; /** * 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']; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnu.org/gettext^0.22', 'perl.org^5.22', 'gnome.org/libxslt^1.1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cpanmin.us', 'docbook.org/xsl', 'curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.74.0', '0.73.0', '0.72.0', '0.71.0', '0.70.0', '0.69.0']; aliases: readonly [] }; export type Po4aorgPackage = typeof po4aorgPackage