]> git.pld-linux.org Git - packages/bvi.git/blob - bvi.spec
- many small fixes, inspired by kloczek
[packages/bvi.git] / bvi.spec
1 Summary:        Binary vi
2 Summary(pl):    Binarny vi
3 Name:           bvi
4 Version:        1.3.1
5 Release:        2
6 License:        GPL
7 Group:          Applications/Editors
8 Source0:        http://dl.sourceforge.net/%{name}/%{name}-%{version}.src.tar.gz
9 # Source0-md5:  b9d77c57bda2e019207a1874d9bb4dea
10 Patch0:         %{name}-etc_dir.patch
11 URL:            http://bvi.sf.net/
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 bvi is a simple binary file editor which user interface is based on vi
16 editor.
17
18 %description -l pl
19 bvi to prosty edytor plików binarnych z interfejsem wzorowanym na
20 edytorze vi.
21
22 %prep
23 %setup -q
24 %patch0 -p1
25
26 %build
27 %configure \
28         --with-ncurses=/usr
29 %{__make}
30
31 %install
32 rm -rf $RPM_BUILD_ROOT
33 install -d $RPM_BUILD_ROOT
34
35 %{__make} install \
36         DESTDIR=$RPM_BUILD_ROOT
37
38 %clean
39 rm -rf $RPM_BUILD_ROOT
40
41 %files
42 %defattr(644,root,root,755)
43 %doc README CHANGES CREDITS html/*
44 %attr(755,root,root) %{_bindir}/*
45 %{_datadir}/bmore.help
46 %doc %{_mandir}/man1/*
This page took 0.04992 seconds and 3 git commands to generate.