/** * **mun** - Source code for the Mun language and runtime. * * @domain `mun-lang.org` * @programs `mun` * @version `0.5.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install mun-lang.org` * @homepage https://mun-lang.org * @dependencies `invisible-island.net/ncurses@6`, `sourceware.org/libffi@3`, `gnome.org/libxml2@2` * @buildDependencies `llvm.org@^14` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.munlangorg * console.log(pkg.name) // "mun" * console.log(pkg.description) // "Source code for the Mun language and runtime." * console.log(pkg.programs) // ["mun"] * console.log(pkg.versions[0]) // "0.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mun-lang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const munlangorgPackage: { /** * The display name of this package. */ name: 'mun'; /** * The canonical domain name for this package. */ domain: 'mun-lang.org'; /** * Brief description of what this package does. */ description: 'Source code for the Mun language and runtime.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mun-lang.org/package.yml'; homepageUrl: 'https://mun-lang.org'; githubUrl: 'https://github.com/mun-lang/mun'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mun-lang.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mun-lang.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mun-lang.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mun']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['invisible-island.net/ncurses@6', 'sourceware.org/libffi@3', 'gnome.org/libxml2@2']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['llvm.org@^14']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.0']; aliases: readonly [] }; export type MunlangorgPackage = typeof munlangorgPackage