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

Revision 1197, 3.3 KB checked in by Takemikaduchi, 14 years ago (diff)

update wine and add wine-doors

Line 
1Name:           unshield
2Version:        0.6
3Release:        1%{?_dist_release}
4Summary:        Install InstallShield applications on a Pocket PC
5
6Group:          Applications/Communications
7License:        MIT
8URL:            http://synce.sourceforge.net/
9Source0:        http://dl.sf.net/synce/unshield-0.6.tar.gz
10BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
11
12BuildRequires:  zlib-devel
13BuildRequires:  libtool
14
15%description
16To install a Pocket PC application remotely, an installable
17Microsoft Cabinet File is copied to the /Windows/AppMgr/Install
18directory on the PDA and then the wceload.exe is executed to
19perform the actual install. That is a very simple procedure.
20
21Unfortunately, many applications for Pocket PC are distributed as
22InstallShield installers for Microsoft Windows, and not as
23individual Microsoft Cabinet Files. That is very impractical for
24users of other operating systems, such as Linux or FreeBSD.
25
26%package devel
27Group:          Development/Libraries
28Summary:        Files needed for software development with %{name}
29Requires:       %{name} = %{version}-%{release}
30Requires:       pkgconfig
31
32%description devel
33The %{name}-devel package contains the files needed for development with
34%{name}
35
36%prep
37%setup -q
38
39%build
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* Wed Jun 09 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.6-1
72- initial build for Vine Linux
73
74
75* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-2
76- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
77
78* Tue Jul 21 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
79- 0.6
80- version upgrade
81
82* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.1-3
83- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
84
85* Sun Feb 08 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
86- 0.5.1-2
87- bump for pkgconfig
88
89* Tue Jun 17 2008 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
90- 0.5.1-1
91- version upgrade
92
93* Thu Aug 23 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
94- 0.5-7
95- rebuild for buildid
96
97* Thu Nov 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
980.5-6
99- fix #212516 (thanks to Hans de Goede)
100
101* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 0.5-5
102 - rebuilt for unwind info generation, broken in gcc-4.1.1-21
103
104* Mon Sep 18 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1050.5-4
106- FE6 rebuild
107
108* Thu Feb 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1090.5-3
110- Rebuild for Fedora Extras 5
111
112* Tue Sep 13 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1130.5-2
114- add dist
115- change devel Require from V to V-R
116
117* Tue Aug 23 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
1180.5-1
119- Initial Release
Note: See TracBrowser for help on using the repository browser.