/** * **glog** - C++ implementation of the Google logging module * * @domain `google.com/glog` * @version `0.7.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install google.com/glog` * @homepage http://google.github.io/glog/ * @dependencies `gflags.github.io` * @buildDependencies `cmake.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.googlecomglog * console.log(pkg.name) // "glog" * console.log(pkg.description) // "C++ implementation of the Google logging module" * console.log(pkg.versions[0]) // "0.7.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/google-com/glog.md * @see https://ts-pkgx.netlify.app/usage */ export declare const googlecomglogPackage: { /** * The display name of this package. */ name: 'glog'; /** * The canonical domain name for this package. */ domain: 'google.com/glog'; /** * Brief description of what this package does. */ description: 'C++ implementation of the Google logging module'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/glog/package.yml'; homepageUrl: 'http://google.github.io/glog/'; githubUrl: 'https://github.com/google/glog'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install google.com/glog'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +google.com/glog -- $SHELL -i'; launchpadInstallCommand: 'launchpad install google.com/glog'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gflags.github.io']; /** * 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 ['0.7.1', '0.7.0', '0.6.0']; aliases: readonly [] }; export type GooglecomglogPackage = typeof googlecomglogPackage