Files
bsdports/text/libfribidi/files/fribidi-config
2019-12-26 07:26:06 +00:00

20 lines
272 B
Bash

#!/bin/sh
pkgconfig="%%LOCALBASE%%/bin/pkg-config"
args=""
while [ $# -gt 0 ]; do
case "x$1" in
x--version)
${pkgconfig} --modversion fribidi
exit 0
;;
x*)
args="${args} $1"
shift
;;
esac
done
${pkgconfig} fribidi ${args}