build: add hacks to force waf to generate valid .pc files

Don't like this? You're invited to fix this crap.
This commit is contained in:
wm4 2014-08-07 23:45:40 +02:00
parent 5906041343
commit 7898169484
2 changed files with 9 additions and 0 deletions

View File

@ -8,4 +8,5 @@ Description: mpv media player client library
Version: @VERSION@
Requires:
Libs: -L${libdir} -lmpv
Libs.private: @PRIV_LIBS@
Cflags: -I${includedir}

View File

@ -479,6 +479,13 @@ def build(ctx):
if build_static:
_build_libmpv(False)
def get_deps():
res = ""
for k in ctx.env.keys():
if k.startswith("LIB_") and k != "LIB_ST":
res += " ".join(["-l" + x for x in ctx.env[k]]) + " "
return res
ctx(
target = 'libmpv/mpv.pc',
source = 'libmpv/mpv.pc.in',
@ -487,6 +494,7 @@ def build(ctx):
LIBDIR = ctx.env.LIBDIR,
INCDIR = ctx.env.INCDIR,
VERSION = libversion,
PRIV_LIBS = get_deps(),
)
headers = ["client.h"]