source: projects/specs/trunk/u/unshield/unshield-vl.spec @ 9037

Revision 9037, 3.5 KB checked in by inagaki, 9 years ago (diff)

2014-10-28 Ryoichi INAGAKI <ryo1@…>

  • clutter-gst, dynamite, orange: changed Group
  • unshield: updated


Line 
1Name:           unshield
2Version:        1.0
3Release:        1%{?_dist_release}
4Summary:        Extract CAB files from InstallShield installers
5
6Group:          Applications/Accessories
7License:        MIT
8URL:            https://github.com/twogood/unshield
9
10Source0:        https://github.com/twogood/unshield/archive/%{version}.tar.gz
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12BuildRequires:  autoconf
13BuildRequires:  automake
14BuildRequires:  libtool
15BuildRequires:  zlib-devel
16
17%description
18This tool allows the extraction of InstallShield format cabinet files (which
19are different from Microsoft cabinet files). It was initially developed as a
20part of the SynCE project to aid with installing applications for Pocket PC
21devices, which were often contained in InstallShield installers, but these days
22that is rather less likely to be the primary use case.
23
24%package devel
25Summary:        Files needed for software development with %{name}
26Summary(ja):    %{name} の開発用ファイル
27Group:          Development/Libraries
28Requires:       %{name} = %{version}-%{release}
29Requires:       pkgconfig
30
31%description devel
32The %{name}-devel package contains the files needed for development with
33%{name}
34
35%prep
36%setup -q
37
38%build
39./bootstrap
40%configure --disable-static --disable-rpath
41make LIBTOOL=%{_bindir}/libtool %{?_smp_mflags}
42
43
44%install
45rm -rf $RPM_BUILD_ROOT
46make install DESTDIR=$RPM_BUILD_ROOT
47
48rm -f $RPM_BUILD_ROOT%{_libdir}/libunshield.{,l}a
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%post -p /sbin/ldconfig
54
55%postun -p /sbin/ldconfig
56
57%files
58%defattr(-,root,root,-)
59%doc README LICENSE
60%{_bindir}/unshield
61%{_mandir}/man1/unshield.1.gz
62%{_libdir}/libunshield.so.*
63
64%files devel
65%defattr(-,root,root,-)
66%{_libdir}/libunshield.so
67%{_includedir}/libunshield.h
68%{_libdir}/pkgconfig/libunshield.pc
69
70%changelog
71* Tue Oct 28 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.0-1
72- updated to 1.0
73- updated URL
74- moved to Applications/Accessories Group
75
76* Sun Feb 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.6-2
77- rebuild with Vine6 environment
78
79* Wed Jun 09 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.6-1
80- initial build for Vine Linux
81
82
83* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-2
84- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
85
86* Tue Jul 21 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
87- 0.6
88- version upgrade
89
90* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.1-3
91- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
92
93* Sun Feb 08 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
94- 0.5.1-2
95- bump for pkgconfig
96
97* Tue Jun 17 2008 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
98- 0.5.1-1
99- version upgrade
100
101* Thu Aug 23 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
102- 0.5-7
103- rebuild for buildid
104
105* Thu Nov 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1060.5-6
107- fix #212516 (thanks to Hans de Goede)
108
109* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 0.5-5
110 - rebuilt for unwind info generation, broken in gcc-4.1.1-21
111
112* Mon Sep 18 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1130.5-4
114- FE6 rebuild
115
116* Thu Feb 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1170.5-3
118- Rebuild for Fedora Extras 5
119
120* Tue Sep 13 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1210.5-2
122- add dist
123- change devel Require from V to V-R
124
125* Tue Aug 23 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1260.5-1
127- Initial Release
Note: See TracBrowser for help on using the repository browser.