blob: 22b287b0edd7267d7892062bc2ec5bf567a5ee97 (
plain)
1 # Description: a very basic terminfo library
2 # URL: https://github.com/neovim/unibilium
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=unibilium
7 version=2.1.1
8 release=1
9 source=(https://github.com/neovim/unibilium/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 make PREFIX=/usr
14 DESTDIR=$PKG make install PREFIX=/usr
15 }
|