diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /core/openvi/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/openvi/MAKEPKG')
| -rw-r--r-- | core/openvi/MAKEPKG | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/core/openvi/MAKEPKG b/core/openvi/MAKEPKG new file mode 100644 index 0000000..a431130 --- /dev/null +++ b/core/openvi/MAKEPKG @@ -0,0 +1,35 @@ +#!/bin/mkpkg +# description: OpenVi is a portable fork of the OpenBSD vi editor +# url: https://github.com/johnsonjh/OpenVi/ + +name=openvi +version=7.9.33 +release=1 +depends=(ncurses) +source=(https://github.com/johnsonjh/OpenVi/archive/refs/tags/${version}.tar.gz) +renames=($name-$version.tar.gz) + +sha256sums=( + "3b807837b8458609b37e107fa063160298ee3655998dd8df590885c297af1fd3" +) + +build() { + cd OpenVi-"${version}" + + make CC="${CC:-cc}" + make PREFIX=/ MANDIR=/usr/share/man DESTDIR="${PKG}" install + + rm -rf $PKG/libexec + + ln -sf ovi $PKG/bin/vi + ln -sf ovi $PKG/bin/ex + + rm -rf $PKG/share +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
