bab163ff06
library. ok op@ sthen@ The "z" library implements the commonly required image processing basics of scaling, colorspace conversion, and depth conversion. A simple API enables conversion between any supported formats to operate with minimal knowledge from the programmer. All library routines were designed from the ground-up with correctness, flexibility, and thread-safety as first priorities. Allocation, buffering, and I/O are cleanly separated from processing, allowing the programmer to adapt "z" to many scenarios.
28 lines
523 B
Makefile
28 lines
523 B
Makefile
COMMENT = scaling, colorspace conversion, and dithering library
|
|
CATEGORIES = graphics
|
|
|
|
SHARED_LIBS += zimg 0.0 # 2.0
|
|
|
|
GH_ACCOUNT = sekrit-twc
|
|
GH_PROJECT = zimg
|
|
GH_TAGNAME = release-3.0.4
|
|
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# WTFPL
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} m
|
|
|
|
# C++14
|
|
COMPILER = base-clang ports-gcc
|
|
|
|
CONFIGURE_STYLE = autoreconf
|
|
|
|
AUTOCONF_VERSION = 2.71
|
|
AUTOMAKE_VERSION = 1.16
|
|
|
|
FAKE_FLAGS = exampledir="${PREFIX}/share/examples/zimg"
|
|
|
|
.include <bsd.port.mk>
|