community/zimg to 2.9.3-1

This commit is contained in:
Kevin Mihelich 2020-03-02 19:45:14 +00:00
parent 81ea3b33f1
commit 90eba203d3

View file

@ -5,17 +5,23 @@
# - remove --enable-x86simd from configure # - remove --enable-x86simd from configure
pkgname=zimg pkgname=zimg
pkgver=2.9.2 pkgver=2.9.3
pkgrel=1 pkgrel=1
pkgdesc='Scaling, colorspace conversion, and dithering library' pkgdesc='Scaling, colorspace conversion, and dithering library'
arch=('x86_64') arch=(x86_64)
url='https://github.com/sekrit-twc/zimg' url=https://github.com/sekrit-twc/zimg
license=('custom:WTFPL') license=(custom:WTFPL)
makedepends=('git') makedepends=(git)
provides=('libzimg.so') provides=(libzimg.so)
options=('!emptydirs') options=(!emptydirs)
source=("git+https://github.com/sekrit-twc/zimg.git#tag=release-${pkgver}") source=(git+https://github.com/sekrit-twc/zimg.git#tag=527dd55fd5221bd223bf019456da215759073c6f)
sha256sums=('SKIP') sha256sums=(SKIP)
pkgver() {
cd zimg
git describe --tags | sed 's/^release-//'
}
prepare() { prepare() {
cd zimg cd zimg
@ -27,7 +33,7 @@ build() {
cd zimg cd zimg
./configure \ ./configure \
--prefix='/usr' \ --prefix=/usr \
--disable-static --disable-static
make make
} }