Page 1 of 1

freetype-config: command not found

Posted: Wed Jun 18, 2025 5:07 pm
by nebiun

Hi,
I'm using freetype-config in my makefiles to set CFLAGS and LIB (freetype-config --cflags, freetype-config --libs).
But now it is missing.

Code: Select all

$ ls /opt/devkitpro/portlibs/ppc/bin/freetype-config
ls: cannot access '/opt/devkitpro/portlibs/ppc/bin/freetype-config': No such file or directory

Installed version is:
ppc-freetype-2.13.3-2

I've tried to reinstall the package, but the script was not restored.

What's wrong?


Re: freetype-config: command not found

Posted: Wed Jun 18, 2025 5:40 pm
by nebiun

Workaround: I create the script from myself.

Code: Select all

#!/bin/bash
export PKG_CONFIG_PATH="${PORTLIBS_PATH}/wii/lib/pkgconfig:${PORTLIBS_PATH}/ppc/lib/pkgconfig"
pkg-config $1 freetype2
exit $?