mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
packaging: fedora: add ruby bindings
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
parent
4753a9f40e
commit
b6a60cf355
1 changed files with 26 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
Name: notmuch
|
Name: notmuch
|
||||||
Version: 0.15.2
|
Version: 0.15.2
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: Thread-based email index, search and tagging
|
Summary: Thread-based email index, search and tagging
|
||||||
|
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
|
@ -26,7 +26,7 @@ URL: http://notmuchmail.org/
|
||||||
Source0: http://notmuchmail.org/releases/notmuch-%{version}.tar.gz
|
Source0: http://notmuchmail.org/releases/notmuch-%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: xapian-core-devel gmime-devel libtalloc-devel
|
BuildRequires: xapian-core-devel gmime-devel libtalloc-devel
|
||||||
BuildRequires: zlib-devel emacs-el emacs-nox python perl
|
BuildRequires: zlib-devel emacs-el emacs-nox python ruby ruby-devel perl
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Fast system for indexing, searching, and tagging email. Even if you
|
Fast system for indexing, searching, and tagging email. Even if you
|
||||||
|
@ -68,6 +68,14 @@ Requires: %{name} = %{version}-%{release}
|
||||||
%description -n python-notmuch
|
%description -n python-notmuch
|
||||||
%{summary}.
|
%{summary}.
|
||||||
|
|
||||||
|
%package -n notmuch-ruby
|
||||||
|
Summary: Ruby bindings for notmuch
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n notmuch-ruby
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
%package mutt
|
%package mutt
|
||||||
Summary: Notmuch (of a) helper for Mutt
|
Summary: Notmuch (of a) helper for Mutt
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
|
@ -91,6 +99,12 @@ pushd bindings/python
|
||||||
python setup.py build
|
python setup.py build
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
pushd bindings/ruby
|
||||||
|
export CONFIGURE_ARGS="--with-cflags='%{optflags}'"
|
||||||
|
ruby extconf.rb --vendor
|
||||||
|
make
|
||||||
|
popd
|
||||||
|
|
||||||
pushd contrib/notmuch-mutt
|
pushd contrib/notmuch-mutt
|
||||||
make
|
make
|
||||||
popd
|
popd
|
||||||
|
@ -102,6 +116,10 @@ pushd bindings/python
|
||||||
python setup.py install -O1 --skip-build --root %{buildroot}
|
python setup.py install -O1 --skip-build --root %{buildroot}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
pushd bindings/ruby
|
||||||
|
make install DESTDIR=%{buildroot}
|
||||||
|
popd
|
||||||
|
|
||||||
install contrib/notmuch-mutt/notmuch-mutt %{buildroot}%{_bindir}/notmuch-mutt
|
install contrib/notmuch-mutt/notmuch-mutt %{buildroot}%{_bindir}/notmuch-mutt
|
||||||
install contrib/notmuch-mutt/notmuch-mutt.1 %{buildroot}%{_mandir}/man1/notmuch-mutt.1
|
install contrib/notmuch-mutt/notmuch-mutt.1 %{buildroot}%{_mandir}/man1/notmuch-mutt.1
|
||||||
|
|
||||||
|
@ -128,11 +146,17 @@ install contrib/notmuch-mutt/notmuch-mutt.1 %{buildroot}%{_mandir}/man1/notmuch-
|
||||||
%doc bindings/python/README
|
%doc bindings/python/README
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
|
||||||
|
%files -n notmuch-ruby
|
||||||
|
%{ruby_vendorarchdir}/*
|
||||||
|
|
||||||
%files mutt
|
%files mutt
|
||||||
%{_bindir}/notmuch-mutt
|
%{_bindir}/notmuch-mutt
|
||||||
%{_mandir}/man1/notmuch-mutt.1*
|
%{_mandir}/man1/notmuch-mutt.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Apr 28 2013 Felipe Contreras <felipe.contreras@gmail.com> - 0.15.2-3
|
||||||
|
- Add ruby bingings
|
||||||
|
|
||||||
* Sun Apr 28 2013 Felipe Contreras <felipe.contreras@gmail.com> - 0.15.2-2
|
* Sun Apr 28 2013 Felipe Contreras <felipe.contreras@gmail.com> - 0.15.2-2
|
||||||
- Sync with Fedora
|
- Sync with Fedora
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue