_realname=unibilium
pkgbase=mingw-w64-${_realname}
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
pkgver=2.0.0
pkgrel=1
pkgdesc="A terminfo parsing library (mingw-w64)"
arch=('any')
url='https://github.com/mauke/unibilium/'
license=(LGPL3)
source=("${_realname}-${pkgver}.tar.gz::https://github.com/mauke/unibilium/archive/v${pkgver}.tar.gz"
        "0001-unibilium-msys-makefile.patch")
sha1sums=('bd6ddf0ae86405b95cd41432081219b2ab1b4b22'
          'aa77f324d698ac725490bbd6dfc7c986bc0cf275')

prepare() {
  cd "${_realname}-${pkgver}"
  patch -Np1 -i "${srcdir}/0001-unibilium-msys-makefile.patch"
}

build() {
  cd ${_realname}-${pkgver}
  make PREFIX=${MINGW_PREFIX}
}

check() {
  cd ${_realname}-${pkgver}
  make test
}

package() {
  cd ${_realname}-${pkgver}
  make install PREFIX=${MINGW_PREFIX} DESTDIR="${pkgdir}"
}
