distribution/packages/devel/fribidi/scripts/fribidi-config

14 lines
218 B
Text
Raw Normal View History

2022-02-05 14:23:32 +00:00
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
while test $# -gt 0; do
case $1 in
--libs)
echo "-lfribidi"
;;
esac
shift
done