]> git.pld-linux.org Git - packages/cabextract.git/blob - cabextract.spec
- fixed for PLD ac/am stuff
[packages/cabextract.git] / cabextract.spec
1 Summary:        A program to extract Microsoft Cabinet files
2 Summary(pl):    Program do rozpakowywania plików MS Cabinet
3 Name:           cabextract
4 Version:        0.6
5 Release:        1
6 License:        GPL
7 Group:          Applications/Archiving
8 Source0:        http://www.kyz.uklinux.net/downloads/%{name}-%{version}.tar.gz
9 Patch0:         %{name}-configure.patch
10 URL:            http://www.kyz.uklinux.net/cabextract.php3
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Cabinet (.CAB) files are a form of archive, which Microsoft use to
18 distribute their software, and things like Windows Font Packs. The
19 cabextract program simply unpacks such files.
20
21 %description -l pl
22 Pliki Cabinet (.CAB) s± rodzajem archiwum, który Miscrosoft u¿ywa do
23 dystrybucji swojego oprogramowania i rzeczy typu Windows Font Pack.
24 cabextract mo¿e takie pliki rozpakowaæ.
25
26 %prep
27 %setup -q
28 %patch0 -p1
29
30 %build
31 rm -f missing
32 %{__libtoolize}
33 aclocal
34 %{__autoconf}
35 %{__automake}
36 %configure
37 %{__make}
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41 %{__make} install DESTDIR="$RPM_BUILD_ROOT"
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %doc AUTHORS NEWS README TODO
49 %attr(755,root,root) %{_bindir}/*
50 %{_mandir}/man1/*
This page took 0.043395 seconds and 3 git commands to generate.