]> git.pld-linux.org Git - packages/cabextract.git/blob - cabextract.spec
- fixed configure patch for ac 2.58, run autoheader; release 3
[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:        3
6 License:        GPL
7 Group:          Applications/Archiving
8 Source0:        http://www.kyz.uklinux.net/downloads/%{name}-%{version}.tar.gz
9 # Source0-md5: 1e6e7d35d4ca4e5bd9cfc86aa315163b
10 Patch0:         %{name}-configure.patch
11 Patch1:         %{name}-segv.patch
12 URL:            http://www.kyz.uklinux.net/cabextract.php3
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libtool
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
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 %patch1 -p1
32
33 %build
34 %{__libtoolize}
35 %{__aclocal}
36 %{__autoconf}
37 %{__autoheader}
38 %{__automake}
39 %configure
40 %{__make}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44
45 %{__make} install \
46         DESTDIR=$RPM_BUILD_ROOT
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(644,root,root,755)
53 %doc AUTHORS NEWS README TODO
54 %attr(755,root,root) %{_bindir}/*
55 %{_mandir}/man1/*
This page took 0.058538 seconds and 4 git commands to generate.