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