aboutsummaryrefslogtreecommitdiffhomepage
path: root/packaging/fedora/notmuch.spec
blob: ef1af2e464d3a217e931334095f2b46bc149a772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
%global git 6b9a717c
%global date %(date +%Y%m%d)

%if %($(pkg-config emacs) ; echo $?)
%global emacs_version 23.1
%global emacs_lispdir %{_datadir}/emacs/site-lisp
%global emacs_startdir %{_datadir}/emacs/site-lisp/site-start.d
%else
%global emacs_version %(pkg-config emacs --modversion)
%global emacs_lispdir %(pkg-config emacs --variable sitepkglispdir)
%global emacs_startdir %(pkg-config emacs --variable sitestartdir)
%endif

# If you are doing a git snapshot:
#
# Release should be 1%{git}%{?dist}
# Source0 should be notmuch-%{version}-%{git}.tar.gz
# git version is generated by 'git show-ref --hash=8 HEAD'
#
# To create a tarball:
#
# git clone git://notmuchmail.org/git/notmuch
# cd notmuch
# git archive --format=tar --prefix=notmuch-0.4/ HEAD | gzip > notmuch-0.4-`git show-ref --hash=8 HEAD`.tar.gz
#

Name:           notmuch
Version:        0.4
Release:        1%{?dist}
Summary:        Not much of an email program

Group:          Applications/Internet
License:        GPLv3+
URL:            http://notmuchmail.org/

Source0:        http://notmuchmail.org/releases/notmuch-%{version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildRequires:  xapian-core-devel
BuildRequires:  gmime-devel
BuildRequires:  libtalloc-devel
BuildRequires:  zlib-devel
BuildRequires:  emacs-el
BuildRequires:  emacs-nox

Requires:       emacs(bin) >= %{emacs_version}

%description
* "Not much mail" is what Notmuch thinks about your email
  collection. Even if you receive 12000 messages per month or have on
  the order of millions of messages that you've been saving for
  decades. Regardless, Notmuch will be able to quickly search all of
  it. It's just plain not much mail.

* "Not much mail" is also what you should have in your inbox at any
  time. Notmuch gives you what you need, (tags and fast search), so
  that you can keep your inbox tamed and focus on what really matters
  in your life, (which is surely not email).

* Notmuch is an answer to Sup. Sup is a very good email program
  written by William Morgan (and others) and is the direct inspiration
  for Notmuch. Notmuch began as an effort to rewrite
  performance-critical pieces of Sup in C rather than ruby. From
  there, it grew into a separate project. One significant contribution
  Notmuch makes compared to Sup is the separation of the
  indexer/searcher from the user interface. (Notmuch provides a
  library interface so that its indexing/searching/tagging features
  can be integrated into any email program.)

* Notmuch is not much of an email program. It doesn't receive messages
  (no POP or IMAP support). It doesn't send messages (no mail composer,
  no network code at all). And for what it does do (email search) that
  work is provided by an external library, Xapian. So if Notmuch
  provides no user interface and Xapian does all the heavy lifting,
  then what's left here? Not much.

Notmuch is still in the early stages of development, but it does
include one user interface, (implemented within Emacs), which has at
least two users using it for reading all of their incoming mail. If
you've been looking for a fast, global-search and tag-based email
reader to use within Emacs, then Notmuch may be exactly what you've
been looking for.

Otherwise, if you're a developer of an existing email program and
would love a good library interface for fast, global search with
support for arbitrary tags, then Notmuch also may be exactly what
you've been looking for.

%package        devel
Summary:        Development files for %{name}
Group:          Development/Libraries
Requires:       %{name} = %{version}-%{release}

%description    devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.

%prep
%setup -q

%build
./configure --prefix=/usr --libdir=%{_libdir} --sysconfdir=%{_sysconfdir}
make %{?_smp_mflags} CFLAGS="%{optflags}"
emacs -batch -f batch-byte-compile emacs/*.el

%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot} prefix=%{_prefix}
mv %{buildroot}%{_sysconfdir}/bash_completion.d %{buildroot}%{_datarootdir}/bash_completion

%clean
rm -rf %{buildroot}

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING COPYING-GPL-3 INSTALL README TODO

%{_bindir}/notmuch
%{_libdir}/libnotmuch.so.*
%{_mandir}/man1/notmuch.1*

%{_emacs_sitelispdir}/*

%{_datarootdir}/zsh/functions/Completion/Unix/notmuch
%{_datarootdir}/bash_completion/notmuch

%files devel
%defattr(-,root,root,-)
%doc AUTHORS COPYING COPYING-GPL-3 INSTALL README TODO
%{_includedir}/*
%{_libdir}/*.so


%changelog
* Tue Nov  2 2010 Scott Henson <shenson@redhat.com> - 0.4-1
- New upstream release

* Wed Nov 18 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.0-0.3.306635c2
- First version