/** * **cmocka** - pkgx package * * @domain `cmocka.org` * @version `2.0.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install cmocka.org` * @buildDependencies `cmake.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cmockaorg * console.log(pkg.name) // "cmocka" * console.log(pkg.versions[0]) // "2.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cmocka-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cmockaorgPackage: { /** * The display name of this package. */ name: 'cmocka'; /** * The canonical domain name for this package. */ domain: 'cmocka.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cmocka.org/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cmocka.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cmocka.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install cmocka.org'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.0', '1.1.8', '1.1.7']; aliases: readonly [] }; export type CmockaorgPackage = typeof cmockaorgPackage