mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
.. when building on Debian there is no package for KQOauth, so as a temporary measure we're pulling it into the repo to support packaging. .. as soon as a KQOauth package is made available we will remove it from our repo
16 lines
352 B
Bash
Executable File
16 lines
352 B
Bash
Executable File
#!/bin/sh
|
|
# This "script" creates a pkg-config file basing on values set
|
|
# in project file
|
|
|
|
echo "prefix=$1
|
|
exec_prefix=\${prefix}
|
|
libdir=\${prefix}/lib
|
|
includedir=\${prefix}/include/QtKOAuth
|
|
|
|
Name: KQOAuth
|
|
Description: Qt OAuth support library
|
|
Version: $2
|
|
Requires: QtCore QtNetwork
|
|
Libs: -L\${libdir} -lkqoauth
|
|
Cflags: -I\${includedir}" > kqoauth.pc
|