]> git.pld-linux.org Git - packages/cabextract.git/blob - cabextract.spec
- converted to UTF-8
[packages/cabextract.git] / cabextract.spec
1 Summary:        A program to extract Microsoft Cabinet files
2 Summary(pl.UTF-8):   Program do rozpakowywania plików MS Cabinet
3 Name:           cabextract
4 Version:        1.2
5 Release:        1
6 License:        GPL
7 Group:          Applications/Archiving
8 Source0:        http://www.kyz.uklinux.net/downloads/%{name}-%{version}.tar.gz
9 # Source0-md5:  dc421a690648b503265c82ade84e143e
10 Patch0:         %{name}-libmspack.patch
11 URL:            http://www.kyz.uklinux.net/cabextract.php
12 BuildRequires:  autoconf >= 2.57
13 BuildRequires:  automake
14 BuildRequires:  libmspack-devel >= 0.0.20060920alpha
15 Requires:       libmspack >= 0.0.20060920alpha
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 Cabinet (.CAB) files are a form of archive, which Microsoft use to
20 distribute their software, and things like Windows Font Packs. The
21 cabextract program simply unpacks such files.
22
23 %description -l pl.UTF-8
24 Pliki Cabinet (.CAB) są rodzajem archiwum, który Microsoft używa do
25 dystrybucji swojego oprogramowania i rzeczy typu Windows Font Pack.
26 cabextract może takie pliki rozpakować.
27
28 %prep
29 %setup -q
30 %patch0 -p1
31 rm -rf mspack
32
33 %build
34 %{__aclocal}
35 %{__autoconf}
36 %{__autoheader}
37 %{__automake}
38 %configure
39 %{__make}
40
41 %install
42 rm -rf $RPM_BUILD_ROOT
43
44 %{__make} install \
45         DESTDIR=$RPM_BUILD_ROOT
46
47 install -D doc/ja/cabextract.1 $RPM_BUILD_ROOT%{_mandir}/ja/man1/cabextract.1
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %files
53 %defattr(644,root,root,755)
54 %doc AUTHORS ChangeLog NEWS README TODO
55 %attr(755,root,root) %{_bindir}/*
56 %{_mandir}/man1/*
57 %lang(ja) %{_mandir}/ja/man1/*
This page took 0.047003 seconds and 3 git commands to generate.