/** * **macvim** - Vim - the text editor - for macOS * * @domain `macvim.org` * @programs `gview`, `gvim`, `gvimdiff`, `gvimtutor`, `mview`, ... (+7 more) * @version `182.0.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install macvim.org` * @homepage https://macvim.org * @dependencies `cscope.sourceforge.io`, `invisible-island.net/ncurses`, `lua.org`, ... (+4 more) * @buildDependencies `gnu.org/make` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.macvimorg * console.log(pkg.name) // "macvim" * console.log(pkg.description) // "Vim - the text editor - for macOS" * console.log(pkg.programs) // ["gview", "gvim", ...] * console.log(pkg.versions[0]) // "182.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/macvim-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const macvimorgPackage: { /** * The display name of this package. */ name: 'macvim'; /** * The canonical domain name for this package. */ domain: 'macvim.org'; /** * Brief description of what this package does. */ description: 'Vim - the text editor - for macOS'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/macvim.org/package.yml'; homepageUrl: 'https://macvim.org'; githubUrl: 'https://github.com/macvim-dev/macvim'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install macvim.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +macvim.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install macvim.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gview', 'gvim', 'gvimdiff', 'gvimtutor', 'mview', 'mvim', 'mvimdiff', 'mvimtutor', 'view', 'vim', 'vimdiff', 'vimtutor']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['cscope.sourceforge.io', 'invisible-island.net/ncurses', 'lua.org', 'python.org~3.11', 'ruby-lang.org', 'libsodium.org', 'gnu.org/gettext']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/make']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['182.0.0', '181.0.0', '180.0.0', '179.0.0', '178.0.0', '177.0.0']; aliases: readonly [] }; export type MacvimorgPackage = typeof macvimorgPackage