aboutsummaryrefslogtreecommitdiff
path: root/bindings/ruby/extconf.rb
diff options
context:
space:
mode:
authorAli Polatel <alip@exherbo.org>2010-05-22 08:45:40 +0300
committerAli Polatel <alip@exherbo.org>2010-06-06 09:16:53 +0300
commit06bf04500ba282052d38adf428219968ae62bb54 (patch)
tree5bf98c44b50b0542501f6ecba9b02e49d87cbddf /bindings/ruby/extconf.rb
parent2ead072e85315387c0cc3c2236cdedb59503881e (diff)
Initial ruby bindings
Diffstat (limited to 'bindings/ruby/extconf.rb')
-rw-r--r--bindings/ruby/extconf.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb
new file mode 100644
index 0000000..a9d9d42
--- /dev/null
+++ b/bindings/ruby/extconf.rb
@@ -0,0 +1,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')