]> git.pld-linux.org Git - packages/urlview.git/blob - urlview.spec
- removed all Group fields translations (oure rpm now can handle translating
[packages/urlview.git] / urlview.spec
1 Summary:        A URL extractor/viewer for use with Mutt
2 Summary(pl):    Program do wyci±gania/ogl±dania URL-i dla Mutta
3 Name:           urlview
4 Version:        0.9
5 Release:        4
6 License:        GPL
7 Group:          Applications/Networking
8 Source0:        ftp://ftp.mutt.org/pub/mutt/contrib/%{name}-%{version}.tar.gz
9 Patch0:         %{name}-DESTDIR.patch
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  slang-devel
13 Requires:       webclient
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 urlview extracts URLs from a given text file, and presents a menu of
18 URLs to view using a user specified command.
19
20 %description -l pl
21 urlview wyci±ga URL-e z podanego pliku tekstowego i pokazuje menu
22 pozwalaj±ce je ogl±daæ podanym poleceniem.
23
24 %prep
25 %setup -q
26 %patch0 -p1
27
28 %build
29 rm -f missing
30 aclocal
31 autoconf
32 automake -a -c
33 %configure \
34         --with-slang
35 %{__make}
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39 install -d $RPM_BUILD_ROOT/{%{_bindir},%{_mandir}/man1}
40
41 %{__make} install \
42         DESTDIR=$RPM_BUILD_ROOT
43
44 install url_handler.sh $RPM_BUILD_ROOT%{_bindir}/
45
46 gzip -9nf AUTHORS ChangeLog README sample.urlview urlview.sgml
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(644,root,root,755)
53 %doc *.gz
54 %attr(755,root,root) %{_bindir}/*
55 %{_mandir}/man1/*
This page took 0.076317 seconds and 3 git commands to generate.