use libexif for getting the EXIF orientation tag, it is so much faster than identify...
[booh] / INSTALL
1 This software requires for compiling:
2
3 - gtk >= 2.6
4 - ruby
5 - ruby-gettext >= 0.8.0
6 - ruby-gtk2 >= 0.12
7 - devel of ruby-gnome2 (mkmf-gnome2.rb, rbgobject.h)
8 - libexif
9
10     Note: theoretically, gtk and ruby-gtk2 are not needed if
11     you're gonna use only the backend script (the only lost
12     functionality is white balance correction which uses
13     gdk_pixbuf). However, the GUI is an important part of this
14     software and its use is encouraged (it helps a lot).
15
16 And for runtime:
17
18 - convert (from ImageMagick)
19
20 For runtime, not strictly needed but nice to have:
21
22 - transcode and mencoder (not strictly needed if you won't manipulate any video)
23
24
25         Compiling and Installing Quick Start
26
27 Type this as normal user:
28
29  # ruby setup.rb config
30  # ruby setup.rb setup
31  # cd ext
32  # ruby extconf.rb
33  # make
34
35 And type this as superuser:
36
37  $ ruby setup.rb install
38  $ cd ext
39  $ make install
40
41 If you want to package as normal user to another root:
42  $ rm -rf %buildroot
43  $ ruby setup.rb install --prefix=%buildroot
44  $ cd ext
45  $ make install DESTDIR=%buildroot libdir=%buildroot%{_libdir} archdir=%buildroot%ruby_archdir
46
47  ruby_archdir being the result of: ruby -rrbconfig -e "puts Config::CONFIG['sitearchdir']"
48
49 Note: it will install things in traditional directories plus
50 ruby_archdir and ruby_libdir, the latter one being the result of
51 ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']"
52
53
54 Find icons for you menu system in the icons/ subdir.