]> git.notmuchmail.org Git - notmuch/blob - bindings/ruby/extconf.rb
a9d9d42b6a158cc9580ce5d3a8005cd19b04f24e
[notmuch] / bindings / ruby / extconf.rb
1 #!/usr/bin/env ruby
2 # coding: utf-8
3 # vim: set sw=2 sts=2 et nowrap fenc=utf-8 :
4 # Copyright 2010 Ali Polatel <alip@exherbo.org>
5 # Distributed under the terms of the GNU General Public License v3
6
7 require 'mkmf'
8
9 # Notmuch Library
10 find_header('notmuch.h', '../../lib')
11 find_library('notmuch', 'notmuch_database_create', '../../lib')
12
13 # Create Makefile
14 dir_config('notmuch')
15 create_makefile('notmuch')