]> git.pld-linux.org Git - packages/catdoc.git/blame_incremental - catdoc.spec
- updated to 0.95
[packages/catdoc.git] / catdoc.spec
... / ...
CommitLineData
1Summary: Reads MS-Word file and puts its content as plain text on standard output
2Summary(pl.UTF-8): Program konwertujący pliki MS Worda na czysty tekst
3Name: catdoc
4Version: 0.94.2
5Release: 2
6License: GPL v2
7Group: Applications/Text
8Source0: http://ftp.wagner.pp.ru/pub/catdoc/%{name}-%{version}.tar.gz
9# Source0-md5: 243e1680bb3e703616f5adecfee24491
10Patch0: %{name}-opt.patch
11Patch1: %{name}-build.patch
12URL: http://www.wagner.pp.ru/~vitus/software/catdoc/
13BuildRequires: autoconf
14BuildRequires: automake
15BuildRequires: tk
16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18%description
19CATDOC is program which reads MS-Word file and prints readable ASCII
20text to stdout, just like Unix cat command. It is also able to produce
21correct escape sequences if some UNICODE characters have to be
22represented specially in your typesetting system such as (La)TeX.
23
24%description -l pl.UTF-8
25catdoc jest programem czytającym dokumenty MS-Worda i wypisującym
26tekst ASCII na standardowe wyjście, podobnie jak komenda cat. Może
27także tworzyć poprawne sekwencje dla niektórych znaków unikodowych
28reprezentowanych specjalnie w systemie składu, jak np. (La)TeX.
29
30%prep
31%setup -q
32%patch0 -p1
33%patch1 -p1
34
35%build
36cp -f /usr/share/automake/config.sub .
37%{__aclocal}
38%{__autoconf}
39%configure \
40 --with-wish=/usr/bin/wish
41
42%{__make}
43
44%install
45rm -rf $RPM_BUILD_ROOT
46
47%{__make} -j1 install \
48 installroot=$RPM_BUILD_ROOT \
49 mandir=%{_mandir}/man1
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
56%doc CREDITS NEWS README TODO
57%attr(755,root,root) %{_bindir}/*
58%{_datadir}/catdoc
59%{_mandir}/man1/*
This page took 0.054085 seconds and 4 git commands to generate.