22 lines
440 B
Plaintext
22 lines
440 B
Plaintext
# Tanım: Scaling, colorspace conversion, and dithering library
|
||
# URL: http://forum.doom9.org/showthread.php?t=171334
|
||
# Paketçi: milisarge
|
||
# Gerekler:
|
||
|
||
name=zimg
|
||
version=2.5.1
|
||
release=1
|
||
source=(https://github.com/sekrit-twc/zimg/archive/release-$version.tar.gz)
|
||
|
||
derle() {
|
||
cd zimg-release-${version}
|
||
|
||
./autogen.sh
|
||
./configure \
|
||
--prefix='/usr' \
|
||
--enable-x86simd \
|
||
--disable-static
|
||
make
|
||
make DESTDIR="${PKG}" install
|
||
}
|