initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

25
openvi/PKGBUILD Normal file
View File

@@ -0,0 +1,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=openvi
pkgver=7.5.29
pkgrel=1
pkgdesc="Portable OpenBSD vi"
url='https://github.com/johnsonjh/OpenVi'
license=('Modified-BSD' 'Simplified-BSD' 'ISC')
arch=('i686' 'x86_64')
depends=('ncurses' 'gawk')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/johnsonjh/OpenVi/archive/refs/tags/${pkgver}.tar.gz")
sha512sums=('6c11cf0651cc3ba21669e4f7f660411299cac4de53659ab58bae9c0fdb2453282dc0f8a0e346279021509a83df86cc1db09b079b2b3e9880eaf722b3d3cf9a8a')
build() {
cd OpenVi-${pkgver}
make PREFIX="/usr"
}
package() {
cd OpenVi-${pkgver}
make PREFIX="$pkgdir/usr" install
# licenses
install -Dm644 LICENSES/{BSD-2-Clause,BSD-3-Clause,ISC}.txt -t "$pkgdir/usr/share/licenses/$pkgname"
}