switch to libexiv2, it can write EXIF data
[booh] / ext / build.sh
1 #!/bin/sh
2
3 ruby extconf.rb || exit 1
4 #- we use libexiv2 which is a C++ library, this is dirty but I don't want
5 #- to mess with extconf.rb and ruby mkmf
6 perl -pi -e 's/CC = gcc/CC = c++/' Makefile
7 make
8