autotools.sh 248 B

1234567891011
  1. #!/bin/bash
  2. # continuous integration test script
  3. # run this from the top-level source directory
  4. OGG_PATH=/srv/jenkins/jobs/libogg/workspace
  5. ./autogen.sh
  6. ./configure PKG_CONFIG_PATH=${OGG_PATH}
  7. make distcheck PKG_CONFIG_PATH=${OGG_PATH}
  8. make docs