]> git.pld-linux.org Git - packages/bosh.git/blame - bosh.spec
- include /usr/include/ncurses in order to fix ncurses problem
[packages/bosh.git] / bosh.spec
CommitLineData
e11265b0 1Summary: Browsable output shell
2Name: bosh
3Version: 0.6
4Release: 1
5License: GPL v2+
6Group: Applications
7Source0: http://dl.sourceforge.net/bosh/%{name}-%{version}.tar.gz
8# Source0-md5: 975ef183ed4d2314186b1f2705d57c65
ecf8fdfb 9Patch0: %{name}-ncurses.patch
e11265b0 10URL: http://bosh.sourceforge.net/
11BuildRequires: autoconf
12BuildRequires: automake
13BuildRequires: ncurses-devel
e11265b0 14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%description
17bosh stands for browsable output shell. This is a bit of a misnomer
18because it isn't really a shell. What is does is store the output of a
19specified program in a buffer, and provides a simple curses interface
20to browse this buffer. Actions can be configured which can make use of
21the contents of the currently selected line.
22
23%prep
24%setup -q
ecf8fdfb 25%patch0 -p1
e11265b0 26
27%build
28%{__aclocal}
29%{__autoconf}
30%{__automake}
31%configure
32%{__make}
33
34%install
35rm -rf $RPM_BUILD_ROOT
36
37%{__make} install \
38 DESTDIR=$RPM_BUILD_ROOT
39
40%clean
41rm -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.084849 seconds and 4 git commands to generate.