# Description: C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics
# URL: https://openexr.com/en/latest/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu

name=imath
version=3.2.2
release=1
source=(https://github.com/AcademySoftwareFoundation/$name/archive/v${version}/$name-$version.tar.gz)

build() {
    cmake -S Imath-$version -B build -G Ninja \
        -D CMAKE_INSTALL_PREFIX=/usr \
        -D CMAKE_INSTALL_LIBDIR=lib \
        -D CMAKE_BUILD_TYPE=Release \
        -D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
        -D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
        -D BUILD_TESTING=OFF \
        -Wno-dev
    cmake --build build
    DESTDIR=$PKG cmake --install build
}

# vim: set ts=4 et:
