Skip to content

Commit

Permalink
Add pkg-config file for libjackserver
Browse files Browse the repository at this point in the history
(cherry picked from commit 4f90ba0)
  • Loading branch information
nedko committed Jun 21, 2024
1 parent 886b35c commit 3896997
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions common/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -515,3 +515,13 @@ def build(bld):
CLIENTLIB=clientlib.target,
SERVERLIB=serverlib.target,
)
# process jackserver.pc.in -> jackserver.pc
bld(
features='subst_pc',
source='../jackserver.pc.in',
target='jackserver.pc',
install_path='${PKGCONFDIR}',
INCLUDEDIR=os.path.normpath(bld.env['PREFIX'] + '/include'),
CLIENTLIB=clientlib.target,
SERVERLIB=serverlib.target,
)
11 changes: 11 additions & 0 deletions jackserver.pc.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
prefix=@PREFIX@
exec_prefix=@PREFIX@
libdir=@LIBDIR@
includedir=@INCLUDEDIR@
jack_implementation=jack2

Name: jackserver
Description: the Jack Audio Connection Kit: a low-latency synchronous callback-based media server (libjackserver)
Version: @JACK_VERSION@
Libs: -L${libdir} -l@SERVERLIB@
Cflags: -I${includedir}

0 comments on commit 3896997

Please sign in to comment.