]> git.pld-linux.org Git - packages/fbterm.git/blob - fbterm.spec
3e68ac0e6d72bccdc3b93d85068697c0a919ed97
[packages/fbterm.git] / fbterm.spec
1 Summary:        Terminal emulator for framebuffer
2 Summary(pl.UTF-8):      Emulator terminala dla framebuffera
3 Name:           fbterm
4 Version:        1.2
5 Release:        0.3
6 License:        GPL v2
7 Group:          Applications/Graphics
8 Source0:        http://fbterm.googlecode.com/files/%{name}-%{version}.tar.gz
9 # Source0-md5:  92cc48ff42f6059722f72c62130ee97b
10 URL:            http://code.google.com/p/fbterm/
11 Patch0:         %{name}-header.patch
12 Patch1:         %{name}-directcolor.patch
13 Patch2:         %{name}-256_colors.patch
14 BuildRequires:  fontconfig-devel
15 BuildRequires:  freetype-devel
16 BuildRequires:  libstdc++-devel
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 FbTerm is a fast terminal emulator for linux with frame buffer device.
21 Features include:
22 - mostly as fast as terminal of linux kernel while accelerated
23   scrolling is enabled on framebuffer device
24 - select font with fontconfig and draw text with freetype2, same as
25   Qt/Gtk+ based GUI apps
26 - dynamicly create/destroy up to 10 windows initially running default
27   shell
28 - record scrollback history for every window
29 - auto-detect text encoding with current locale, support double width
30   scripts like Chinese, Japanese etc
31 - switch between configurable additional text encodings with hot keys
32   on the fly
33 - copy/past selected text between windows with mouse when gpm server
34   is running
35
36 %prep
37 %setup -q
38 %patch0 -p1
39 %patch1 -p1
40 %patch2 -p1
41
42 %build
43 %configure
44 %{__make}
45
46 %install
47 rm -rf $RPM_BUILD_ROOT
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc AUTHORS ChangeLog NEWS README 
57 %attr(755,root,root) %{_bindir}/*
58 %{_mandir}/man1/*
This page took 0.065136 seconds and 3 git commands to generate.