]> git.pld-linux.org Git - packages/bbe.git/blame - bbe.spec
- new
[packages/bbe.git] / bbe.spec
CommitLineData
0d345801 1Summary: bbe - Binary block editor
2Name: bbe
3Version: 0.2.2
4Release: 0.1
5License: GPL v2
6Group: Applications/Text
7URL: http://members.surfeu.fi/tjsa/bbe/
8Source0: http://dl.sourceforge.net/bbe-/%{name}-%{version}.tar.gz
9# Source0-md5: b056d0bfd852384aced73d4533887d4b
10BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12%description
13The bbe program is a sed-like editor for binary files. bbe performs
14basic byte related transformations on blocks of input stream. bbe is
15non-interactive command line tool and can be used as a part of a
16pipeline. bbe makes only one pass over input stream.
17
18bbe contains also grep-like features, like printing the filename,
19offset and block number.
20
21%prep
22%setup -q
23
24%build
25%configure
26%{__make}
27
28%install
29rm -rf $RPM_BUILD_ROOT
30%{__make} install \
31 DESTDIR=$RPM_BUILD_ROOT \
32 htmldir=%{_docdir}/%{name}-%{version}
33
34%files
35%defattr(644,root,root,755)
36%doc AUTHORS ChangeLog
37%attr(755,root,root) %{_bindir}/bbe
38%{_mandir}/man1/bbe.*
39%{_infodir}/bbe.*
40
41%clean
42rm -rf $RPM_BUILD_ROOT
This page took 0.121375 seconds and 4 git commands to generate.