cd04fc6782
L-SMASH source plugin for VapourSynth. https://github.com/VFR-maniac/L-SMASH-Works/tree/master/VapourSynth
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= l-smash-works
|
|
DISTVERSION= 0.0-877 # git rev-list --count HEAD
|
|
DISTVERSIONSUFFIX= -g9828349
|
|
CATEGORIES= multimedia
|
|
PKGNAMEPREFIX= vapoursynth-
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= L-SMASH source plugin for VapourSynth
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/vapoursynth/VSHelper.h:multimedia/vapoursynth
|
|
LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \
|
|
liblsmash.so:multimedia/l-smash
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= VFR-maniac
|
|
GH_PROJECT= L-SMASH-Works
|
|
|
|
USES= gmake pkgconfig shebangfix
|
|
EXCLUDE= VSHelper.h VSScript.h VapourSynth.h
|
|
EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,}
|
|
WRKSRC_SUBDIR= VapourSynth
|
|
SHEBANG_FILES= configure
|
|
bash_CMD= ${SH}
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ENV= LD="${CC}" REV="${PORTVERSION:E}" \
|
|
HASH="${DISTVERSIONSUFFIX:S/^-g//}"
|
|
CONFIGURE_ARGS= --prefix="${PREFIX}" \
|
|
--extra-cflags="${CPPFLAGS} ${CFLAGS}" \
|
|
--extra-ldflags="${LDFLAGS}" \
|
|
--extra-libs="${LIBS}"
|
|
MAKEFILE= GNUmakefile
|
|
MAKE_ARGS= STRIP="${STRIP_CMD}"
|
|
CPPFLAGS+= `pkg-config vapoursynth --cflags`
|
|
USE_LDCONFIG= yes
|
|
DATADIR= ${PREFIX}/lib/vapoursynth
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
PLIST_FILES= lib/libvslsmashsource.so.${PORTVERSION:E} \
|
|
%%DATADIR%%/libvslsmashsource.so
|
|
PORTDOCS= README
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -Ee '/CROSS/!s/^(CC|LD|REV|HASH)=.*/: $${&}/' \
|
|
-e 's/pushd/cd/; s/popd/cd -/' \
|
|
-e 's/-Os //; /=.*-fexcess-precision/d' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} \
|
|
"${PORTDOCS}" ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|