/** * **docbook-xsl** - XML vocabulary to create presentation-neutral documents * * @domain `docbook.org/xsl` * @programs `dbtoepub` * @version `1.79.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install docbook.org/xsl` * @dependencies `docbook.org^5`, `gnome.org/libxml2` * @buildDependencies `gnu.org/wget` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.docbookorgxsl * console.log(pkg.name) // "docbook-xsl" * console.log(pkg.description) // "XML vocabulary to create presentation-neutral d..." * console.log(pkg.programs) // ["dbtoepub"] * console.log(pkg.versions[0]) // "1.79.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/docbook-org/xsl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const docbookorgxslPackage: { /** * The display name of this package. */ name: 'docbook-xsl'; /** * The canonical domain name for this package. */ domain: 'docbook.org/xsl'; /** * Brief description of what this package does. */ description: 'XML vocabulary to create presentation-neutral documents'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/docbook.org/xsl/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/docbook/xslt10-stylesheets'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install docbook.org/xsl'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +docbook.org/xsl -- $SHELL -i'; launchpadInstallCommand: 'launchpad install docbook.org/xsl'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dbtoepub']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['docbook.org^5', 'gnome.org/libxml2']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/wget']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.79.2']; aliases: readonly [] }; export type DocbookorgxslPackage = typeof docbookorgxslPackage