aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/ruby/extconf.rb
blob: a9d9d42b6a158cc9580ce5d3a8005cd19b04f24e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env ruby
# coding: utf-8
# vim: set sw=2 sts=2 et nowrap fenc=utf-8 :
# Copyright 2010 Ali Polatel <alip@exherbo.org>
# Distributed under the terms of the GNU General Public License v3

require 'mkmf'

# Notmuch Library
find_header('notmuch.h', '../../lib')
find_library('notmuch', 'notmuch_database_create', '../../lib')

# Create Makefile
dir_config('notmuch')
create_makefile('notmuch')