Change-Id: Idc94969fdd9178e938e6bf72e87e3d744c84e8d6
Reviewed-on: http://photon-jenkins.eng.vmware.com/1183
Tested-by: gerrit-photon <photon-checkins@vmware.com>
Reviewed-by: suezzelur <anishs@vmware.com>
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,32 @@ |
| 0 |
+Summary: Terminal multiplexer |
|
| 1 |
+Name: tmux |
|
| 2 |
+Version: 2.2 |
|
| 3 |
+Release: 1%{?dist}
|
|
| 4 |
+License: GPLv3+ |
|
| 5 |
+URL: https://tmux.github.io/ |
|
| 6 |
+Group: Applications/System |
|
| 7 |
+Vendor: VMware, Inc. |
|
| 8 |
+Distribution: Photon |
|
| 9 |
+Source0: https://github.com/tmux/tmux/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
| 10 |
+%define sha1 tmux=5ed1430bc7ef44c227e64e9401c686573dd0791a |
|
| 11 |
+Requires: libevent ncurses |
|
| 12 |
+BuildRequires: libevent-devel ncurses-devel |
|
| 13 |
+%description |
|
| 14 |
+Terminal multiplexer |
|
| 15 |
+%prep |
|
| 16 |
+%setup -q |
|
| 17 |
+%build |
|
| 18 |
+./configure \ |
|
| 19 |
+ --prefix=%{_prefix}
|
|
| 20 |
+make %{?_smp_mflags}
|
|
| 21 |
+%install |
|
| 22 |
+make DESTDIR=%{buildroot} install
|
|
| 23 |
+%files |
|
| 24 |
+%defattr(-,root,root) |
|
| 25 |
+/usr/bin/* |
|
| 26 |
+%exclude /usr/lib |
|
| 27 |
+/usr/share/* |
|
| 28 |
+%exclude /usr/src |
|
| 29 |
+%changelog |
|
| 30 |
+* Wed Jul 13 2016 Alexey Makhalov <amakhalov@vmware.com> 2.2-1 |
|
| 31 |
+- Initial build. First version |