2df0c31937
port builds.
19 lines
272 B
Bash
19 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}
|