forked from tarantool/queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarantool-queue.spec
44 lines (38 loc) · 1.07 KB
/
tarantool-queue.spec
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
Name: tarantool-queue
Version: 1.0.1
Release: 1%{?dist}
Summary: Persistent in-memory queues for Tarantool
Group: Applications/Databases
License: BSD
URL: https://github.com/tarantool/queue
Source0: https://github.com/tarantool/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: tarantool >= 1.6.8.0
BuildRequires: tarantool-devel >= 1.6.8.0
BuildRequires: /usr/bin/prove
Requires: tarantool >= 1.6.8.0
%description
A collection of persistent queue implementations for Tarantool.
%prep
%setup -q -n %{name}-%{version}
%build
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo
# %check
# make check
#
%define luapkgdir %{_datadir}/tarantool/queue/
%install
%make_install
%files
%dir %{luapkgdir}
%{luapkgdir}/*.lua
%{luapkgdir}/abstract/*.lua
%{luapkgdir}/abstract/driver/*.lua
%doc README.md
%{!?_licensedir:%global license %doc}
%license LICENSE
%changelog
* Thu Apr 06 2016 Eugene Blikh <[email protected]> 1.0.1-6
- RPM spec uses CMake now (depend on tarantool0devel)
* Thu Feb 18 2016 Roman Tsisyk <[email protected]> 1.0.0-1
- Initial version of the RPM spec