]> git.pld-linux.org Git - packages/tmux.git/blob - tmux.spec
- updated dependencies, note on utf8proc
[packages/tmux.git] / tmux.spec
1 # TODO:
2 # - vim doesn't detect filetype
3 Summary:        tmux - a terminal multiplexer
4 Summary(hu.UTF-8):      tmux egy terminál-sokszorozó
5 Summary(pl.UTF-8):      tmux - multiplekser terminali
6 Name:           tmux
7 Version:        2.8
8 Release:        1
9 License:        ISC
10 Group:          Applications/Terminal
11 #Source0Download: https://github.com/tmux/tmux/releases
12 Source0:        https://github.com/tmux/tmux/releases/download/%{version}/%{name}-%{version}.tar.gz
13 # Source0-md5:  79ff2929a6422e45b490daa895cca4a2
14 Source1:        %{name}-filedetect.vim
15 Source2:        https://raw.githubusercontent.com/keith/tmux.vim/master/syntax/tmux.vim
16 # Source2-md5:  cd1169a1757b515b5c57816d339c6f72
17 Source3:        https://raw.githubusercontent.com/przepompownia/tmux-bash-completion/master/completions/tmux
18 # Source3-md5:  9040fcb0a16bc85309ac9eefb60c644f
19 URL:            http://tmux.github.io/
20 BuildRequires:  libevent-devel
21 BuildRequires:  libutempter-devel
22 BuildRequires:  ncurses-devel >= 5
23 BuildRequires:  pkgconfig
24 BuildRequires:  rpmbuild(macros) >= 1.673
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 tmux is a terminal multiplexer: it enables a number of terminals (or
29 windows), each running a separate program, to be created, accessed,
30 and controlled from a single screen. tmux may be detached from a
31 screen and continue running in the background, then later reattached.
32
33 %description -l hu.UTF-8
34 tmux egy terminál-sokszorozó: terminálok (vagy ablakok) sokaságát
35 hozhatd létre, mindegyikben egy külön program fut, létrehozhatsz,
36 csatlakozhatsz és irányíthatod egyetlen képernyőről. tmux
37 lecsatlakozhat a képernyőről és folytathatja a futását a háttérben, és
38 később újracsatlakozhatsz.
39
40 %description -l pl.UTF-8
41 tmux to multiplekser terminali: pozwala na tworzenie wielu terminali
42 (lub okien) z osobnymi programami, dostęp do nich i sterowanie z
43 pojedynczego ekranu. tmux może być odłączony od ekranu i nadal działać
44 w tle, a następnie ponownie podłączony.
45
46 %package -n vim-syntax-tmux
47 Summary:        Vim syntax file to tmux config files
48 Summary(hu.UTF-8):      Vim syntax fájl a tmux konfigurációs fájljához
49 Summary(pl.UTF-8):      Plik składni Vima dla plików konfiguracyjnych tmuksa
50 Group:          Applications/Editors/Vim
51 Requires:       vim-rt
52
53 %description -n vim-syntax-tmux
54 Vim syntax file to tmux config files.
55
56 %description -n vim-syntax-tmux -l hu.UTF-8
57 Vim syntax fájl a tmux konfigurációs fájljához.
58
59 %package -n bash-completion-tmux
60 Summary:        Bash completion for tmux
61 Summary(pl.UTF-8):      Bashowe dopełnianie poleceń dla tmuksa
62 Group:          Applications/Shells
63 Requires:       %{name} = %{version}-%{release}
64 Requires:       bash-completion >= 2.0
65
66 %description -n bash-completion-tmux
67 This package provides bash-completion for tmux.
68
69 %description -n bash-completion-tmux -l pl.UTF-8
70 Ten pakiet dostarcza bashowe dopełnianie składni dla polecenia tmux.
71
72 %prep
73 %setup -q
74
75 %build
76 # note: on Linux use plain glibc functions instead of utf8proc
77 %configure \
78         CPPFLAGS="%{rpmcppflags} -I/usr/include/ncursesw"
79
80 %{__make}
81
82 %install
83 rm -rf $RPM_BUILD_ROOT
84
85 %{__make} install \
86         DESTDIR=$RPM_BUILD_ROOT \
87         PREFIX=%{_prefix}
88
89 install -d $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles/{ftdetect,syntax}
90 install %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles/ftdetect/tmux.vim
91 install %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/vim/vimfiles/syntax
92 install -d $RPM_BUILD_ROOT%{bash_compdir}
93 install %{SOURCE3} $RPM_BUILD_ROOT%{bash_compdir}/%{name}
94
95 %clean
96 rm -rf $RPM_BUILD_ROOT
97
98 %files
99 %defattr(644,root,root,755)
100 %doc CHANGES COPYING README TODO
101 %attr(755,root,root) %{_bindir}/tmux
102 %{_mandir}/man1/tmux.1*
103
104 %files -n vim-syntax-tmux
105 %defattr(644,root,root,755)
106 %{_datadir}/vim/vimfiles/ftdetect/tmux.vim
107 %{_datadir}/vim/vimfiles/syntax/tmux.vim
108
109 %files -n bash-completion-tmux
110 %defattr(644,root,root,755)
111 %{bash_compdir}/%{name}
This page took 0.076074 seconds and 3 git commands to generate.