]> git.pld-linux.org Git - packages/cabextract.git/blob - cabextract.spec
- new, based on spec from tar.gz
[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.5
5 Release:        1
6 License:        GPL
7 Group:          Applications/Archiving
8 Group(de):      Applikationen/Archivierung
9 Group(pl):      Aplikacje/Archiwizacja
10 Source0:        http://www.kyz.uklinux.net/downloads/%{name}-%{version}.tar.gz
11 URL:            http://www.kyz.uklinux.net/cabextract.php3
12 BuildRequires:  autoconf
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Cabinet (.CAB) files are a form of archive, which Microsoft use to
17 distribute their software, and things like Windows Font Packs. The
18 cabextract program simply unpacks such files.
19
20 %description -l pl
21 Pliki Cabinet (.CAB) s± rodzajem archiwum, który Miscrosoft u¿ywa do
22 dystrybucji swojego oprogramowania i rzeczy typu Windows Font Pack.
23 cabextract mo¿e takie pliki rozpakowaæ.
24
25 %prep
26 %setup -q
27
28 %build
29 autoconf
30 %configure
31 %{__make}
32
33 %install
34 rm -rf $RPM_BUILD_ROOT
35 %{__make} install DESTDIR="$RPM_BUILD_ROOT"
36
37 gzip -9nf AUTHORS NEWS README TODO
38
39 %clean
40 rm -rf $RPM_BUILD_ROOT
41
42 %files
43 %defattr(644,root,root,755)
44 %doc *.gz
45 %attr(755,root,root) %{_bindir}/*
46 %{_mandir}/man1/*
This page took 0.134796 seconds and 4 git commands to generate.