/** * **lcov** - Graphical front-end for GCC's coverage testing tool (gcov) * * @domain `github.com/linux-test-project/lcov` * @programs `lcov`, `geninfo`, `genhtml`, `gendesc`, `genpng` * @version `2.3.2` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/linux-test-project/lcov` * @dependencies `perl.org>=5`, `python.org@3` * @buildDependencies `cpanmin.us@^1` - required only when building from source * @companions `PERL5LIB^${{prefix}}/lib/perl5` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomlinuxtestprojectlcov * console.log(pkg.name) // "lcov" * console.log(pkg.description) // "Graphical front-end for GCC's coverage testing ..." * console.log(pkg.programs) // ["lcov", "geninfo", ...] * console.log(pkg.versions[0]) // "2.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/linux-test-project/lcov.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lcovPackage: { /** * The display name of this package. */ name: 'lcov'; /** * The canonical domain name for this package. */ domain: 'github.com/linux-test-project/lcov'; /** * Brief description of what this package does. */ description: 'Graphical front-end for GCC\'s coverage testing tool (gcov)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/linux-test-project/lcov/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/linux-test-project/lcov'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/linux-test-project/lcov'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/linux-test-project/lcov -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/linux-test-project/lcov'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lcov', 'geninfo', 'genhtml', 'gendesc', 'genpng']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['PERL5LIB^${{prefix}}/lib/perl5']; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['perl.org>=5', 'python.org@3']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cpanmin.us@^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.3.2', '2.3.1', '2.3.0', '2.2.0', '1.16.0']; aliases: readonly [] }; export type LcovPackage = typeof lcovPackage