-
Notifications
You must be signed in to change notification settings - Fork 1
/
tmux-1.8.spec
64 lines (50 loc) · 1.76 KB
/
tmux-1.8.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
# spec file for package samtools
#
# Copyright (c) 2013 Mario Giovacchini <[email protected]>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: tmux
Version: 1.8
Release: 1%{?dist}
Summary: Multiprocessing
Group: Productivity/Scientific/Other
License: MIT
URL: http://tmux.sourceforge.net/
Source: http://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{version}/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: libevent
# This package is not available for RHEL-6 and is too old in the CentOS 6 repo
# probably needs to be built locally
BuildRequires: libevent-devel
BuildRequires: ncurses
BuildRequires: ncurses-devel
%description
tmux is a "terminal multiplexer". It allows a number of terminals (or windows)
to be accessed and controlled from a single terminal. It is intended to be
a simple, modern, BSD-licensed alternative to programs such as GNU screen.
%prep
%setup -q
%build
%{configure}
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%{_bindir}/tmux
%{_mandir}/man1/tmux.1.gz
%changelog
* Tue Nov 19 2013 Mario Giovacchini <[email protected]> - 1.0
- Intial version