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

23
unibilium/PKGBUILD Normal file
View File

@@ -0,0 +1,23 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=unibilium
pkgver=2.1.0
pkgrel=1
pkgdesc='A terminfo parsing library'
license=('LGPL-3')
arch=('i686' 'x86_64')
url='https://github.com/neovim/unibilium'
depends=('glibc')
source=("$pkgname-$pkgver.tar.gz::https://github.com/neovim/unibilium/archive/v$pkgver.tar.gz")
sha512sums=('c0074ff8431f82c92072b8c0c9d3cf38d759b4de996b168c6ab00e475b0a6204d9c29b0a6e48e62dd4fa4898f82246150ef7cd5e246893d2c225c50ec4d4ac68')
build() {
cd $pkgname-$pkgver
make PREFIX=/usr
}
package() {
cd $pkgname-$pkgver
DESTDIR="$pkgdir" make install PREFIX=/usr
install -Dm644 LGPLv3 -t "${pkgdir}/usr/share/licenses/$pkgname"
}