7bd7ffaa3e
This folder contains a reference implementation for an ACES container file writer intended to be used with the Academy Color Encoding System (ACES). The resulting file is compliant with the ACES container specification (SMPTE S2065-4). However, there are a few things that are not demonstrated by this reference implementation. Stereo channels EndOfFileFiller Arbitrary attributes and naming validations half type attributes keycode value validations WWW: https://github.com/ampas/aces_container Approved by: wg/pawel (mentors)
33 lines
675 B
Makefile
33 lines
675 B
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ampasACES-container
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= graphics devel
|
|
|
|
MAINTAINER= nemysis@FreeBSD.org
|
|
COMMENT= ACES Container Reference Implementation
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ampas
|
|
GH_PROJECT= aces_container
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
GH_COMMIT= d028c19
|
|
|
|
USES= cmake pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= README.md
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|lib/pkgconfig|libdata/pkgconfig|' \
|
|
-e 's|lib/CMake|lib/cmake|' \
|
|
${WRKSRC}/CMakeLists.txt
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|