d426bd3c31
Note that according to https://abi-laboratory.pro/index.php?view=timeline&l=fribidi 2 symbols were removed since the version we have, but according to the check I have done those 2 symbols are present in 1.0.10, meaning it is binary compatible
27 lines
620 B
Makefile
27 lines
620 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fribidi
|
|
PORTVERSION= 1.0.10
|
|
CATEGORIES= converters
|
|
MASTER_SITES= https://github.com/fribidi/fribidi/releases/download/v${PORTVERSION}/
|
|
|
|
MAINTAINER= desktop@FreeBSD.org
|
|
COMMENT= Free Implementation of the Unicode Bidirectional Algorithm
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= meson tar:xz
|
|
USE_LDCONFIG= yes
|
|
MESON_ARGS= -Dtests=false
|
|
|
|
post-patch:
|
|
@${SED} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' < \
|
|
${FILESDIR}/fribidi-config > ${WRKDIR}/fribidi-config
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/fribidi-config ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|