# $Id$ # Maintainer: Maxime Gauduin # Contributor: Gustavo Alvarez # ALARM: Kevin Mihelich # - remove --enable-x86simd from configure pkgname=zimg pkgver=2.7 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') provides=('libzimg.so') options=('!emptydirs') source=("zimg-${pkgver}.tar.gz::https://github.com/sekrit-twc/zimg/archive/release-${pkgver}.tar.gz") sha256sums=('afc15350bd0072a24dd0ed1eaae832ce606245e3c1f8edd81a81bb6f1bfdda2d') build() { cd zimg-release-${pkgver} ./autogen.sh ./configure \ --prefix='/usr' \ --disable-static make } package(){ cd zimg-release-${pkgver} make DESTDIR="${pkgdir}" install install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/zimg/ } # vim: ts=2 sw=2 et: