]> git.pld-linux.org Git - SPECS.git/blob - splitvt.spec
SPECS updated Tue 30 Apr 15:06:09 CEST 2024
[SPECS.git] / splitvt.spec
1 Summary:        A program which splits your terminal into two resizable windows
2 Summary(pl.UTF-8):      Program który dzieli konsole na dwa okna
3 Name:           splitvt
4 Version:        1.6.6
5 Release:        2
6 License:        GPL
7 Group:          Applications/System
8 Source0:        http://www.devolution.com/~slouken/projects/splitvt/%{name}-%{version}.tar.gz
9 # Source0-md5:  ca886884f53c529c149f8945568411ed
10 Patch0:         split-pld.patch
11 URL:            http://www.devolution.com/~slouken/projects/splitvt/
12 BuildRequires:  sed >= 4.0
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Well, this program just splits your screen into two windows, each
17 running a shell, so you can do two things at once.
18 At the moment, only vt100 compatible terminals
19 (such as xterm, decterm, linux console, etc) will run splitvt.
20
21 %description -l pl.UTF-8
22 Ten program dzieli ekran na dwa okna dzięki czemu możesz uruchomić dwa
23 programy na jednej konsoli. W tym momencie program obsługuje terminal
24 vt100 i z nim kompatybilne (takie jak xterm, decterm, konsola
25 linuksowa).
26
27 %prep
28 %setup -q
29 %patch0 -p1
30 sed -i -e 's/-O2/%{rpmcflags}/' config.c
31
32 %build
33 rm -f Makefile
34 # NOTE: it's not autoconf-generated script - don't use macro
35 ./configure %{?debug:-d}
36 %{__make}
37
38 %install
39 rm -rf $RPM_BUILD_ROOT
40 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
41
42 install splitvt $RPM_BUILD_ROOT%{_bindir}
43 install splitvt.1 $RPM_BUILD_ROOT%{_mandir}/man1
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc ANNOUNCE BLURB CHANGES NOTES README TODO escapes examples
51 %attr(755,root,root) %{_bindir}/splitvt
52 %{_mandir}/man1/splitvt.1*
This page took 0.135349 seconds and 3 git commands to generate.