/** * **ccache** - Object-file caching compiler wrapper * * @domain `ccache.dev` * @programs `ccache` * @version `4.12.2` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install ccache.dev` * @homepage https://ccache.dev/ * @dependencies `github.com/redis/hiredis`, `facebook.com/zstd` * @buildDependencies `asciidoctor.org`, `cmake.org`, `linux:llvm.org` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.ccachedev * console.log(pkg.name) // "ccache" * console.log(pkg.description) // "Object-file caching compiler wrapper" * console.log(pkg.programs) // ["ccache"] * console.log(pkg.versions[0]) // "4.12.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ccache-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ccachedevPackage: { /** * The display name of this package. */ name: 'ccache'; /** * The canonical domain name for this package. */ domain: 'ccache.dev'; /** * Brief description of what this package does. */ description: 'Object-file caching compiler wrapper'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ccache.dev/package.yml'; homepageUrl: 'https://ccache.dev/'; githubUrl: 'https://github.com/ccache/ccache'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ccache.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +ccache.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ccache.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ccache']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['github.com/redis/hiredis', 'facebook.com/zstd']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['asciidoctor.org', 'cmake.org', 'linux:llvm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.12.2', '4.12.1', '4.12.0', '4.11.3', '4.11.2', '4.11.1', '4.11.0', '4.10.2', '4.10.1', '4.10.0', '4.9.1', '4.9.0', '4.8.3']; aliases: readonly [] }; export type CcachedevPackage = typeof ccachedevPackage