]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/ruby/extconf.rb
Initial ruby bindings
[notmuch] / bindings / ruby / extconf.rb
diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb
new file mode 100644 (file)
index 0000000..a9d9d42
--- /dev/null
@@ -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')