123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- Name: unshield
- Version: 0.6
- Release: 1%{?_dist_release}
- Summary: Install InstallShield applications on a Pocket PC
- Group: Applications/Communications
- License: MIT
- URL: http://synce.sourceforge.net/
- Source0: http://dl.sf.net/synce/unshield-0.6.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
- BuildRequires: zlib-devel
- BuildRequires: libtool
- %description
- To install a Pocket PC application remotely, an installable
- Microsoft Cabinet File is copied to the /Windows/AppMgr/Install
- directory on the PDA and then the wceload.exe is executed to
- perform the actual install. That is a very simple procedure.
- Unfortunately, many applications for Pocket PC are distributed as
- InstallShield installers for Microsoft Windows, and not as
- individual Microsoft Cabinet Files. That is very impractical for
- users of other operating systems, such as Linux or FreeBSD.
- %package devel
- Group: Development/Libraries
- Summary: Files needed for software development with %{name}
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- The %{name}-devel package contains the files needed for development with
- %{name}
- %prep
- %setup -q
- %build
- %configure --disable-static --disable-rpath
- make LIBTOOL=%{_bindir}/libtool %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT
- rm -f $RPM_BUILD_ROOT%{_libdir}/libunshield.{,l}a
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %doc README LICENSE
- %{_bindir}/unshield
- %{_mandir}/man1/unshield.1.gz
- %{_libdir}/libunshield.so.*
- %files devel
- %defattr(-,root,root,-)
- %{_libdir}/libunshield.so
- %{_includedir}/libunshield.h
- %{_libdir}/pkgconfig/libunshield.pc
- %changelog
- * Wed Jun 09 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.6-1
- - initial build for Vine Linux
- * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Tue Jul 21 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- - 0.6
- - version upgrade
- * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.1-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Sun Feb 08 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- - 0.5.1-2
- - bump for pkgconfig
- * Tue Jun 17 2008 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- - 0.5.1-1
- - version upgrade
- * Thu Aug 23 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- - 0.5-7
- - rebuild for buildid
- * Thu Nov 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 0.5-6
- - fix #212516 (thanks to Hans de Goede)
- * Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 0.5-5
- - rebuilt for unwind info generation, broken in gcc-4.1.1-21
- * Mon Sep 18 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 0.5-4
- - FE6 rebuild
- * Thu Feb 16 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 0.5-3
- - Rebuild for Fedora Extras 5
- * Tue Sep 13 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 0.5-2
- - add dist
- - change devel Require from V to V-R
- * Tue Aug 23 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- 0.5-1
- - Initial Release
|