Skip to content

Instantly share code, notes, and snippets.

@silvansky
Created March 6, 2012 14:00
Show Gist options
  • Save silvansky/1986427 to your computer and use it in GitHub Desktop.
Save silvansky/1986427 to your computer and use it in GitHub Desktop.
PJProject renew script
#!/bin/sh
if [ "$1" == "--last" ]
then
PJ_REPO="svn+ssh://<your-url-here>/pjsip_mod"
PJ_DIR="pjsip_mod"
CONFIG_DEFINES=""
else
PJ_REPO="http://svn.pjsip.org/repos/pjproject/tags/2.0-beta"
PJ_DIR="pjproject-2.0b"
CONFIG_DEFINES="\n
#define PJMEDIA_HAS_VIDEO 1
#define PJMEDIA_HAS_FFMPEG 1
#define PJMEDIA_VIDEO_DEV_HAS_SDL 1
#define PJMEDIA_HAS_FFMPEG_CODEC_H264 1
#define PJMEDIA_HAS_SRTP 0
//#define PJMEDIA_RESAMPLE_IMP PJMEDIA_RESAMPLE_SPEEX\n"
fi
PJ_CONFIG="pjlib/include/pj/config_site.h"
PJ_CONFIG_FLAGS="--with-sdl=/usr/local --with-ffmpeg=/usr/local --with-x264=/usr/local"
EXTRA_LD_FLAGS="-framework VideoDecodeAcceleration"
echo "Removing existing $PJ_DIR directory..."
rm -rf $PJ_DIR
echo "Checking out repo $PJ_REPO in $PJ_DIR directory..."
svn checkout $PJ_REPO $PJ_DIR
if [ "$1" != "--last" ]
then
cd $PJ_DIR/third_party
svn propedit svn:externals --editor-cmd "mcedit" .
cd ..
svn up
else
cd $PJ_DIR
fi
echo "$CONFIG_DEFINES" >> ${PJ_CONFIG}
if [ "$1" == "--last" ]
then
chmod +x configure
chmod +x aconfigure
fi
export LDFLAGS=${EXTRA_LD_FLAGS}
./configure ${PJ_CONFIG_FLAGS}
cd ${PJ_DIR}/
make dep && make && sudo -p "Enter your password to install pjsip:" make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment