]> git.pld-linux.org Git - packages/bosh.git/blob - bosh.spec
726dbaae7c3c568eb6d04a07dfd21adacc3adf86
[packages/bosh.git] / bosh.spec
1 Summary:        Browsable output shell
2 Name:           bosh
3 Version:        0.6
4 Release:        1
5 License:        GPL v2+
6 Group:          Applications
7 Source0:        http://dl.sourceforge.net/bosh/%{name}-%{version}.tar.gz
8 # Source0-md5:  975ef183ed4d2314186b1f2705d57c65
9 URL:            http://bosh.sourceforge.net/
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  ncurses-devel
13 BuildRequires:  sed >= 4.0
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 bosh stands for browsable output shell. This is a bit of a misnomer
18 because it isn't really a shell. What is does is store the output of a
19 specified program in a buffer, and provides a simple curses interface
20 to browse this buffer. Actions can be configured which can make use of
21 the contents of the currently selected line.
22
23 %prep
24 %setup -q
25 %{__sed} -i 's@ncurses.h@ncurses/ncurses.h@' configure.in *.c
26
27 %build
28 %{__aclocal}
29 %{__autoconf}
30 %{__automake}
31 %configure
32 %{__make}
33
34 %install
35 rm -rf $RPM_BUILD_ROOT
36
37 %{__make} install \
38         DESTDIR=$RPM_BUILD_ROOT
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %files
44 %defattr(644,root,root,755)
45 %doc AUTHORS ChangeLog README TODO
46 %attr(755,root,root) %{_bindir}/bosh
47 %{_mandir}/man1/bosh.1*
This page took 0.034631 seconds and 2 git commands to generate.