ts-pkgx
Version:
A library & CLI for managing packages
67 lines • 2.46 kB
TypeScript
/**
* **macvim.org** - Vim - the text editor - for macOS
*
* @domain `macvim.org`
* @programs `gview`, `gvim`, `gvimdiff`, `gvimtutor`, `mview`, ... (+7 more)
* @version `181.0.0` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install macvim.org`
* @dependencies `cscope.sourceforge.io`, `invisible-island.net/ncurses`, `lua.org`, ... (+4 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.macvimorg
* console.log(pkg.name) // "macvim.org"
* console.log(pkg.description) // "Vim - the text editor - for macOS"
* console.log(pkg.programs) // ["gview", "gvim", ...]
* console.log(pkg.versions[0]) // "181.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.org';
/**
* 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: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: '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 [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['cscope.sourceforge.io', 'invisible-island.net/ncurses', 'lua.org', 'python.org~3.11', 'ruby-lang.org', 'libsodium.org', 'gnu.org/gettext'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['181.0.0', '180.0.0', '179.0.0', '178.0.0', '177.0.0'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +macvim.org -- $SHELL -i';
launchpadInstallCommand: 'launchpad install macvim.org'
};
export type MacvimorgPackage = typeof macvimorgPackage