]> git.pld-linux.org Git - packages/cabextract.git/blob - cabextract.spec
- rel++
[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.1
5 Release:        2
6 License:        GPL
7 Group:          Applications/Archiving
8 Source0:        http://www.kyz.uklinux.net/downloads/%{name}-%{version}.tar.gz
9 # Source0-md5:  f4b729c0be7d288660f4fc167de199a1
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 cp -f /usr/share/automake/config.sub .
31 %{__libtoolize}
32 %{__aclocal}
33 %{__autoconf}
34 %{__autoheader}
35 %{__automake}
36 %configure
37 %{__make}
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41
42 %{__make} install \
43         DESTDIR=$RPM_BUILD_ROOT
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc AUTHORS NEWS README TODO
51 %attr(755,root,root) %{_bindir}/*
52 %{_mandir}/man1/*
This page took 0.053269 seconds and 4 git commands to generate.