mirror of https://github.com/FFmpeg/FFmpeg.git
This moves work from the configure to the Make stage where it can be parallelized and ensures that pkgconfig files are updated when library versions change. Bug-Id: 449pull/202/merge
parent
edb4348732
commit
92db508307
12 changed files with 86 additions and 49 deletions
@ -0,0 +1,50 @@ |
|||||||
|
#!/bin/sh |
||||||
|
|
||||||
|
. avbuild/config.sh |
||||||
|
|
||||||
|
if test "$shared" = "yes"; then |
||||||
|
shared=true |
||||||
|
else |
||||||
|
shared=false |
||||||
|
fi |
||||||
|
|
||||||
|
shortname=$1 |
||||||
|
name=lib${shortname} |
||||||
|
comment=$2 |
||||||
|
libs=$(eval echo \$extralibs_${shortname}) |
||||||
|
requires=$(eval echo \$requires_${shortname}) |
||||||
|
requires=${requires%, } |
||||||
|
|
||||||
|
version=$(grep ${name}_VERSION= $name/${name}.version | cut -d= -f2) |
||||||
|
|
||||||
|
cat <<EOF > $name/$name.pc |
||||||
|
prefix=$prefix |
||||||
|
exec_prefix=\${prefix} |
||||||
|
libdir=$libdir |
||||||
|
includedir=$incdir |
||||||
|
|
||||||
|
Name: $name |
||||||
|
Description: $comment |
||||||
|
Version: $version |
||||||
|
Requires: $($shared || echo $requires) |
||||||
|
Requires.private: $($shared && echo $requires) |
||||||
|
Conflicts: |
||||||
|
Libs: -L\${libdir} -l${shortname} $($shared || echo $libs) |
||||||
|
Libs.private: $($shared && echo $libs) |
||||||
|
Cflags: -I\${includedir} |
||||||
|
EOF |
||||||
|
|
||||||
|
cat <<EOF > $name/$name-uninstalled.pc |
||||||
|
prefix= |
||||||
|
exec_prefix= |
||||||
|
libdir=\${pcfiledir} |
||||||
|
includedir=${source_path} |
||||||
|
|
||||||
|
Name: $name |
||||||
|
Description: $comment |
||||||
|
Version: $version |
||||||
|
Requires: $requires |
||||||
|
Conflicts: |
||||||
|
Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs |
||||||
|
Cflags: -I\${includedir} |
||||||
|
EOF |
Loading…
Reference in new issue