source: projects/specs/trunk/c/cabextract/cabextract-vl.spec @ 9808

Revision 9808, 2.4 KB checked in by kudoh, 8 years ago (diff)

new upstream and security fix

Line 
1Summary: A program to extract Microsoft Cabinet files
2Summary(ja): Microsoft キャビネットファイルを抽出するプログラム
3Name: cabextract
4Version: 1.6
5Release: 1%{?_dist_release}
6License: GPLv3
7Group: Applications/Archiving
8Source: http://www.cabextract.org.uk/%{name}-%{version}.tar.gz
9URL: http://www.cabextract.org.uk/
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* Sat Nov 14 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6-1
50- new upstream release
51
52* Wed Feb 11 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.5-1
53- new upstream release
54- changed URL, Source tag
55
56* Sun Jan 12 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-2
57- rebuilt with current toolchain
58
59* Fri May 13 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-1
60- new upstream release
61
62* Mon Aug 16 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-3
63- fixed permission (see [VineLinux:1021])
64
65* Wed Aug 4 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-2
66- recovered %build section
67  - missing type make command...
68
69* Sun Aug 1 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-1
70- new upstream release
71- cleaned up spec
72- changed lisence to GPLv3
73
74* Fri Jul 17 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.2-2
75- spec in UTF-8
76
77* Mon Mar 24 2008 Seiichirou Babasaki 1.2
78- Import cabextract - Packager: Babasaki
79- Updated specfile
Note: See TracBrowser for help on using the repository browser.