]> git.pld-linux.org Git - packages/tmux.git/blame - tmux.spec
- 1.3
[packages/tmux.git] / tmux.spec
CommitLineData
21dfa491
ZU
1# TODO:
2# - vim doesn't detect filetype
df1e8c4e
ZU
3Summary: tmux is a terminal multiplexer
4Summary(hu.UTF-8): tmux egy terminál-sokszorozó
5Name: tmux
42d0ad8b 6Version: 1.3
21dfa491 7Release: 1
df1e8c4e
ZU
8License: BSD
9Group: Applications/Terminal
10Source0: http://dl.sourceforge.net/tmux/%{name}-%{version}.tar.gz
42d0ad8b 11# Source0-md5: 96e60cb206de2db0610b9fb6a64c2251
df1e8c4e
ZU
12Source1: %{name}-filedetect.vim
13Patch0: %{name}-makefile.patch
05eab483 14BuildRequires: libevent-devel
6390aa10 15BuildRequires: ncurses-devel
df1e8c4e
ZU
16URL: http://tmux.sourceforge.net/
17BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19%description
20tmux is a terminal multiplexer: it enables a number of terminals (or
21windows), each running a separate program, to be created, accessed,
22and controlled from a single screen. tmux may be detached from a
23screen and continue running in the background, then later reattached.
24
25%description -l hu.UTF-8
26tmux egy terminál-sokszorozó: terminálok (vagy ablakok) sokaságát
27hozhatd létre, mindegyikben egy külön program fut, létrehozhatsz,
28csatlakozhatsz és irányíthatod egyetlen képernyőről. tmux
29lecsatlakozhat a képernyőről és folytathatja a futását a háttérben, és
30később újracsatlakozhatsz.
31
32%package -n vim-syntax-tmux
33Summary: Vim syntax file to tmux config files
34Summary(hu.UTF-8): Vim syntax fájl a tmux konfigurációs fájljához
35Group: Applications/Editors/Vim
36
37%description -n vim-syntax-tmux
38Vim syntax file to tmux config files.
39
40%description -n vim-syntax-tmux -l hu.UTF-8
41Vim syntax fájl a tmux konfigurációs fájljához.
42
43%prep
44%setup -q
45%patch0 -p1
46
47%build
48./configure
49CFLAGS="%{rpmcflags} -I/usr/include/ncursesw" %{__make} \
05eab483 50 CC="%{__cc}" \
df1e8c4e
ZU
51 PREFIX=%{_prefix}
52
53%install
54rm -rf $RPM_BUILD_ROOT
55
56%{__make} install \
57 DESTDIR=$RPM_BUILD_ROOT \
58 PREFIX=%{_prefix}
59
60install -d $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles/{ftdetect,syntax}
61install %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles/ftdetect/tmux.vim
62install examples/tmux.vim $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles/syntax
63
64%clean
65rm -rf $RPM_BUILD_ROOT
66
67%files
68%defattr(644,root,root,755)
69%doc CHANGES FAQ NOTES TODO examples/*.conf
70%attr(755,root,root) %{_bindir}/*
71%{_mandir}/man1/tmux*
72
73%files -n vim-syntax-tmux
74%defattr(644,root,root,755)
75%{_datadir}/vim/vimfiles/ftdetect/tmux.vim
76%{_datadir}/vim/vimfiles/syntax/tmux.vim
This page took 0.098122 seconds and 4 git commands to generate.