Adding current webp dependency to travis

This commit is contained in:
wiredfool 2014-03-26 09:13:49 -07:00
parent edc3215e34
commit d97244181d

View File

@ -12,10 +12,15 @@ python:
- "pypy" - "pypy"
install: install:
- "sudo apt-get -qq install libfreetype6-dev liblcms2-dev libwebp-dev python-qt4 ghostscript libffi-dev" - "sudo apt-get -qq install libfreetype6-dev liblcms2-dev python-qt4 ghostscript libffi-dev"
- "pip install cffi" - "pip install cffi"
# enables pypy to compile
- "sudo apt-get install python-tk" - "sudo apt-get install python-tk"
# webp UNDONE -- refactor
- "wget 'https://webp.googlecode.com/files/libwebp-0.4.0.tar.gz' -O /tmp/libwebp-0.4.0.tar.gz"
- "tar -C /tmp -xvzf /tmp/libwebp-0.4.0.tar.gz"
- "cd /tmp/libwebp-0.4.0 && ./configure --enable-libwebpmux --enable-libwebpdemux && make && sudo make install"
script: script:
- python setup.py clean - python setup.py clean