PKGBUILDs/community/zimg/PKGBUILD
2019-08-01 23:27:48 +00:00

41 lines
825 B
Bash

# 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.9.2
pkgrel=1
pkgdesc='Scaling, colorspace conversion, and dithering library'
arch=('x86_64')
url='https://github.com/sekrit-twc/zimg'
license=('custom:WTFPL')
makedepends=('git')
provides=('libzimg.so')
options=('!emptydirs')
source=("git+https://github.com/sekrit-twc/zimg.git#tag=release-${pkgver}")
sha256sums=('SKIP')
prepare() {
cd zimg
./autogen.sh
}
build() {
cd zimg
./configure \
--prefix='/usr' \
--disable-static
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: