mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
15 lines
401 B
Ruby
15 lines
401 B
Ruby
#!/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')
|