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

Revision 9348, 2.4 KB checked in by kudoh, 9 years ago (diff)

new upstream release

RevLine 
[521]1Summary: A program to extract Microsoft Cabinet files
[1490]2Summary(ja): Microsoft キャビネットファイルを抽出するプログラム
3Name: cabextract
[9348]4Version: 1.5
5Release: 1%{?_dist_release}
[1490]6License: GPLv3
[521]7Group: Applications/Archiving
[9348]8Source: http://www.cabextract.org.uk/%{name}-%{version}.tar.gz
9URL: http://www.cabextract.org.uk/
[1490]10#Vendor: Stuart Caie
[521]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
[1490]21Microsoft 社の配布するソフトウェア、例えば Windows フォントパック等で
22使用されているキャビネット (.CAB) 形式のアーカイブファイルがあります。
23cabextract プログラムはこれらのファイルの解凍を行います。
[521]24
25#--------------------------------------------------------------------
26%prep
[1490]27%setup -q
[521]28
29%build
30CFLAGS=${RPM_OPT_FLAGS} ./configure --prefix=%{prefix}
[1501]31make %{?_smp_mflags}
[521]32
33%install
34rm -rf ${RPM_BUILD_ROOT}
[1490]35make install DESTDIR=$RPM_BUILD_ROOT
[521]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
[1587]44%attr(0755, root, root) %{_bindir}/cabextract
[521]45%{_mandir}/man1/cabextract.1*
46
47#--------------------------------------------------------------------
48%changelog
[9348]49* Wed Feb 11 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.5-1
50- new upstream release
51- changed URL, Source tag
52
[8156]53* Sun Jan 12 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-2
54- rebuilt with current toolchain
55
[3862]56* Fri May 13 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-1
57- new upstream release
58
[1587]59* Mon Aug 16 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-3
60- fixed permission (see [VineLinux:1021])
61
[1501]62* Wed Aug 4 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-2
63- recovered %build section
64  - missing type make command...
65
[1490]66* Sun Aug 1 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-1
67- new upstream release
68- cleaned up spec
69- changed lisence to GPLv3
70
[521]71* Fri Jul 17 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.2-2
72- spec in UTF-8
73
74* Mon Mar 24 2008 Seiichirou Babasaki 1.2
75- Import cabextract - Packager: Babasaki
76- Updated specfile
Note: See TracBrowser for help on using the repository browser.