source: projects/specs/branches/6/c/cabextract/cabextract-vl.spec @ 3862

Revision 3862, 2.2 KB checked in by kudoh, 13 years ago (diff)
Line 
1Summary: A program to extract Microsoft Cabinet files
2Summary(ja): Microsoft キャビネットファイルを抽出するプログラム
3Name: cabextract
4Version: 1.4
5Release: 1%{?_dist_release}
6License: GPLv3
7Group: Applications/Archiving
8Source: http://www.kyz.uklinux.net/downloads/%{name}-%{version}.tar.gz
9URL: http://www.kyz.uklinux.net/cabextract.php
10#Vendor: Stuart Caie
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12Prefix: /usr
13
14#--------------------------------------------------------------------
15%description
16Cabinet (.CAB) files are a form of archive, which Microsoft use to
17distribute their software, and things like Windows Font Packs. The
18cabextract program unpacks these files.
19
20%description -l ja
21Microsoft 社の配布するソフトウェア、例えば Windows フォントパック等で
22使用されているキャビネット (.CAB) 形式のアーカイブファイルがあります。
23cabextract プログラムはこれらのファイルの解凍を行います。
24
25#--------------------------------------------------------------------
26%prep
27%setup -q
28
29%build
30CFLAGS=${RPM_OPT_FLAGS} ./configure --prefix=%{prefix}
31make %{?_smp_mflags}
32
33%install
34rm -rf ${RPM_BUILD_ROOT}
35make install DESTDIR=$RPM_BUILD_ROOT
36
37%clean
38[ ${RPM_BUILD_ROOT} != "/" ] && rm -rf ${RPM_BUILD_ROOT}
39
40#--------------------------------------------------------------------
41%files
42%defattr(0644, root, root, 0755)
43%doc AUTHORS ChangeLog NEWS README
44%attr(0755, root, root) %{_bindir}/cabextract
45%{_mandir}/man1/cabextract.1*
46
47#--------------------------------------------------------------------
48%changelog
49* Fri May 13 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-1
50- new upstream release
51
52* Mon Aug 16 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-3
53- fixed permission (see [VineLinux:1021])
54
55* Wed Aug 4 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-2
56- recovered %build section
57  - missing type make command...
58
59* Sun Aug 1 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-1
60- new upstream release
61- cleaned up spec
62- changed lisence to GPLv3
63
64* Fri Jul 17 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.2-2
65- spec in UTF-8
66
67* Mon Mar 24 2008 Seiichirou Babasaki 1.2
68- Import cabextract - Packager: Babasaki
69- Updated specfile
Note: See TracBrowser for help on using the repository browser.