123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- set -x
- rm -f ../opus
- ln -s /srv/jenkins/jobs/opus/workspace ../opus
- rm -f ../ogg
- ln -s /srv/jenkins/jobs/libogg/workspace ../ogg
- cat <<EOF > opus-uninstalled.pc
- libdir=\${pcfiledir}/../opus
- includedir=\${libdir}/include
- Name: opus uninstalled for opusfile
- Description: Opus IETF audio codec (not installed)
- Version: 1.0.1
- Requires:
- Conflicts:
- Libs: \${libdir}/libopus.la -lm
- Cflags: -I\${includedir}
- EOF
- cat <<EOF > ogg-uninstalled.pc
- libdir=\${pcfiledir}/../ogg/src
- includedir=\${pcfiledir}/../ogg/include
- Name: ogg uninstalled for opusfile
- Description: ogg is a library for manipulating ogg bitstreams (not installed)
- Version: 1.3.0
- Requires:
- Conflicts:
- Libs: \${libdir}/libogg.la
- Cflags: -I\${includedir}
- EOF
- PKG_CONFIG_PATH=$PWD
- ./autogen.sh
- ./configure PKG_CONFIG_PATH=${PKG_CONFIG_PATH}
- make clean
- make
- make distcheck PKG_CONFIG_PATH=${PKG_CONFIG_PATH}
|