/** * **swig** - SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. * * @domain `swig.org` * @programs `swig`, `ccache-swig` * @version `4.4.1` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install swig.org` * @homepage https://www.swig.org/ * @dependencies `pcre.org/v2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.swigorg * console.log(pkg.name) // "swig" * console.log(pkg.description) // "SWIG is a software development tool that connec..." * console.log(pkg.programs) // ["swig", "ccache-swig"] * console.log(pkg.versions[0]) // "4.4.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/swig-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const swigorgPackage: { /** * The display name of this package. */ name: 'swig'; /** * The canonical domain name for this package. */ domain: 'swig.org'; /** * Brief description of what this package does. */ description: 'SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/swig.org/package.yml'; homepageUrl: 'https://www.swig.org/'; githubUrl: 'https://github.com/swig/swig'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install swig.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +swig.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install swig.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['swig', 'ccache-swig']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['pcre.org/v2']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.4.1', '4.4.0', '4.3.1', '4.3.0', '4.2.1', '4.2.0', '4.1.1']; aliases: readonly [] }; export type SwigorgPackage = typeof swigorgPackage