From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- core/openvi/MAKEPKG | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 core/openvi/MAKEPKG (limited to 'core/openvi/MAKEPKG') 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 -- cgit v1.3.1