PKGBUILDs/community/zimg/PKGBUILD
2017-08-25 11:44:32 +00:00

41 lines
992 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.6a
pkgrel=1
pkgdesc='Scaling, colorspace conversion, and dithering library'
arch=('i686' '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=('d3ba0bb21a3919baf28f3caf9821cfba6ac8b40e74ee43948caae14e8a9e6a61')
build() {
cd zimg-release-${pkgver}
./autogen.sh
./configure \
--prefix='/usr' \
--disable-static
make
}
package(){
cd zimg-release-${pkgver}
make DESTDIR="${pkgdir}" install
install -dm 755 "${pkgdir}"/usr/share/licenses/zimg
install -m 644 COPYING "${pkgdir}"/usr/share/licenses/zimg/
}
# vim: ts=2 sw=2 et: