PKGBUILDs/community/zimg/PKGBUILD
2018-01-10 20:22:22 +00:00

39 lines
933 B
Bash

# $Id$
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Gustavo Alvarez <sl1pkn07@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - 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: