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