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

Revision 1587, 2.1 KB checked in by kudoh, 14 years ago (diff)
Line 
1Summary: A program to extract Microsoft Cabinet files
2Summary(ja): Microsoft キャビネットファイルを抽出するプログラム
3Name: cabextract
4Version: 1.3
5Release: 3%{?_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* Mon Aug 16 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-3
50- fixed permission (see [VineLinux:1021])
51
52* Wed Aug 4 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-2
53- recovered %build section
54  - missing type make command...
55
56* Sun Aug 1 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-1
57- new upstream release
58- cleaned up spec
59- changed lisence to GPLv3
60
61* Fri Jul 17 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.2-2
62- spec in UTF-8
63
64* Mon Mar 24 2008 Seiichirou Babasaki 1.2
65- Import cabextract - Packager: Babasaki
66- Updated specfile
Note: See TracBrowser for help on using the repository browser.