/** * **mandoc.bsd.lv** - UNIX manpage compiler toolset * * @domain `mandoc.bsd.lv` * @programs `bsdapropos`, `bsdman`, `bsdsoelim`, `bsdwhatis`, `demandoc`, ... (+1 more) * @version `1.14.6` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install mandoc.bsd.lv` * @homepage https://mandoc.bsd.lv/ * @dependencies `zlib.net` * @buildDependencies `gnu.org/make` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mandocbsdlv * console.log(pkg.name) // "mandoc.bsd.lv" * console.log(pkg.description) // "UNIX manpage compiler toolset" * console.log(pkg.programs) // ["bsdapropos", "bsdman", ...] * console.log(pkg.versions[0]) // "1.14.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mandoc-bsd-lv.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mandocbsdlvPackage: { /** * The display name of this package. */ name: 'mandoc.bsd.lv'; /** * The canonical domain name for this package. */ domain: 'mandoc.bsd.lv'; /** * Brief description of what this package does. */ description: 'UNIX manpage compiler toolset'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mandoc.bsd.lv/package.yml'; homepageUrl: 'https://mandoc.bsd.lv/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mandoc.bsd.lv'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mandoc.bsd.lv -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mandoc.bsd.lv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bsdapropos', 'bsdman', 'bsdsoelim', 'bsdwhatis', 'demandoc', 'mandoc']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['zlib.net']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/make']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.14.6']; aliases: readonly [] }; export type MandocbsdlvPackage = typeof mandocbsdlvPackage