pkgname=oniguruma pkgver=6.9.10 pkgrel=1 pkgdesc="a regular expressions library" arch=('x86_64') url="https://github.com/kkos/oniguruma" license=('BSD') source=(https://github.com/kkos/oniguruma/releases/download/v${pkgver}/onig-${pkgver/_/-}.tar.gz) sha256sums=(2a5cfc5ae259e4e97f86b68dfffc152cdaffe94e2060b770cb827238d769fc05) build() { cd onig-${pkgver%.1} local configure_args=( --enable-posix-api ${configure_options} ) ./configure ${configure_args[@]} make } package() { cd onig-${pkgver%.1} make DESTDIR=${pkgdir} install install -dm755 ${pkgdir}/usr/share/doc/${pkgname}-${pkgver} cp -r doc ${pkgdir}/usr/share/doc/${pkgname}-${pkgver} }