/** * **pycparser** - :snake: Complete C99 parser in pure Python * * @domain `github.com/eliben/pycparser` * @version `2.23.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/eliben/pycparser` * @dependencies `python.org~3.11` * @buildDependencies `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.githubcomelibenpycparser * console.log(pkg.name) // "pycparser" * console.log(pkg.description) // ":snake: Complete C99 parser in pure Python" * console.log(pkg.versions[0]) // "2.23.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/eliben/pycparser.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pycparserPackage: { /** * The display name of this package. */ name: 'pycparser'; /** * The canonical domain name for this package. */ domain: 'github.com/eliben/pycparser'; /** * Brief description of what this package does. */ description: ':snake: Complete C99 parser in pure Python'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/eliben/pycparser/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/eliben/pycparser'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/eliben/pycparser'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/eliben/pycparser -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/eliben/pycparser'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org~3.11']; /** * 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 ['linux:llvm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.23.0', '2.22.0', '2.21.0']; aliases: readonly [] }; export type PycparserPackage = typeof pycparserPackage