]> git.pld-linux.org Git - packages/cabextract.git/blob - cabextract.spec
- updated to 1.0, removed obsolete patches
[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:        1.0
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:  8fde8ad86f7144943b7e4e5a2da7eddb
10 URL:            http://www.kyz.uklinux.net/cabextract.php3
11 BuildRequires:  autoconf >= 2.57
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 Microsoft 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
29 %build
30 %{__libtoolize}
31 %{__aclocal}
32 %{__autoconf}
33 %{__autoheader}
34 %{__automake}
35 %configure
36 %{__make}
37
38 %install
39 rm -rf $RPM_BUILD_ROOT
40
41 %{__make} install \
42         DESTDIR=$RPM_BUILD_ROOT
43
44 %clean
45 rm -rf $RPM_BUILD_ROOT
46
47 %files
48 %defattr(644,root,root,755)
49 %doc AUTHORS NEWS README TODO
50 %attr(755,root,root) %{_bindir}/*
51 %{_mandir}/man1/*
This page took 0.039294 seconds and 4 git commands to generate.