]> git.pld-linux.org Git - packages/fbv.git/blob - fbv.spec
- spelling
[packages/fbv.git] / fbv.spec
1 Summary:        FrameBuffer Viewer
2 Summary(pl):    Przegl±darka obrazków dla framebuffera
3 Name:           fbv
4 Version:        1.0b
5 Release:        1
6 License:        GPL
7 Group:          Applications/Graphics
8 Source0:        http://s-tech.elsat.net.pl/fbv/%{name}-%{version}.tar.gz
9 # Source0-md5:  3e466375b930ec22be44f1041e77b55d
10 Patch0:         %{name}-nocenter.patch
11 URL:            http://s-tech.elsat.net.pl/
12 BuildRequires:  libjpeg-devel
13 BuildRequires:  libpng-devel
14 BuildRequires:  libungif-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 A simple program to view pictures on a framebuffer console. It
19 supports PNG, JPEG, GIF and BMP files.
20
21 %description -l pl
22 Prosty program do ogl±dania obrazków na konsoli z framebufferem.
23 Obs³uguje pliki PNG, JPEG, GIF i BMP.
24
25 %prep
26 %setup -q
27 %patch0 -p1
28
29 %build
30 # it's not autoconf script
31 ./configure \
32         --prefix=%{_prefix} \
33         --bindir=%{_bindir} \
34         --mandir=%{_mandir}
35
36 %{__make} \
37         CC="%{__cc} %{rpmcflags}"
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
42
43 %{__make} install \
44         DESTDIR=$RPM_BUILD_ROOT
45
46 %clean
47 rm -rf $RPM_BUILD_ROOT
48
49 %files
50 %defattr(644,root,root,755)
51 %doc ChangeLog README TODO
52 %attr(755,root,root) %{_bindir}/*
53 %{_mandir}/man1/*
This page took 0.037245 seconds and 3 git commands to generate.