|
root / test / ports / base / vim / package.toml
package.toml TOML 33 lines 674 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Vim - Vi IMproved
# The classic text editor

[package]
name = "vim"
version = "9.1.0"
release = 1
description = "Vi IMproved - enhanced vi text editor"
url = "https://www.vim.org/"
license = "Vim"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

# vim provides the editor and vi alternatives
alternatives = ["editor", "vi"]

[dependencies]
# Depends on ncurses for terminal handling
runtime = ["ncurses"]
build = ["ncurses"]

[[source]]
file = "vim-9.1.0.tar.gz"
urls = [
    "https://github.com/vim/vim/archive/refs/tags/v9.1.0000.tar.gz",
    "https://ftp.nluug.nl/pub/vim/unix/vim-9.1.tar.bz2"
]
checksum = "SKIP"

[build]
parallel = true
jobs = 0