This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| export PKG_CONFIG_PATH=/usr/lib64/pkgconfig:/usr/lib/pkgconfig | |
| export PATH=/usr/bin:$PATH | |
| export LDFLAGS=-L/usr/lib64:/usr/lib | |
| export LD_LIBRARY_PATH=/usr/lib64:/usr/lib | |
| export CPPFLAGS=-I/usr/include | |
| sudo yum-config-manager --enable epel | |
| #sudo yum update -y | |
| sudo yum install -y gcc gcc-c++ glib2-devel.x86_64 libxml2-devel.x86_64 libpng-devel.x86_64 \ | |
| libjpeg-turbo-devel.x86_64 gobject-introspection.x86_64 gobject-introspection-devel.x86_64 |