24 lines
667 B
Bash
24 lines
667 B
Bash
# 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"
|
|
}
|