# Maintainer: Maxime Gauduin # Contributor: Gustavo Alvarez # ALARM: Kevin Mihelich # - remove --enable-x86simd from configure # - configure with --disable-simd pkgname=zimg pkgver=3.0.5 pkgrel=1 pkgdesc='Scaling, colorspace conversion, and dithering library' arch=(x86_64) url=https://github.com/sekrit-twc/zimg license=(custom:WTFPL) depends=( gcc-libs glibc ) makedepends=(git) provides=(libzimg.so) options=(!emptydirs) _tag=e5b0de6bebbcbc66732ed5afaafef6b2c7dfef87 source=(git+https://github.com/sekrit-twc/zimg.git#tag=${_tag}) sha256sums=(SKIP) prepare() { cd zimg ./autogen.sh } pkgver() { cd zimg git describe --tags | sed 's/^release-//' } build() { cd zimg ./configure \ --prefix=/usr \ --disable-static \ --disable-simd make } package(){ make DESTDIR="${pkgdir}" -C zimg install install -Dm 644 zimg/COPYING -t "${pkgdir}"/usr/share/licenses/zimg/ } # vim: ts=2 sw=2 et: