libusbmuxd-vl.spec 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. Name: libusbmuxd
  2. Version: 1.0.10
  3. Release: 1%{?_dist_release}
  4. Summary: Client library USB multiplex daemon for Apple's iOS devices
  5. Group: System Environment/Libraries
  6. License: LGPLv2+
  7. URL: http://www.libimobiledevice.org/
  8. Source0: http://www.libimobiledevice.org/downloads/%{name}-%{version}.tar.bz2
  9. BuildRequires: libplist-devel >= 1.11
  10. Conflicts: usbmuxd < 1.0.9
  11. %description
  12. libusbmuxd is the client library used for communicating with Apple's iPod Touch,
  13. iPhone, iPad and Apple TV devices. It allows multiple services on the device
  14. to be accessed simultaneously.
  15. %package utils
  16. Summary: Utilities for communicating with Apple's iOS devices
  17. Group: Applications/System
  18. License: GPLv2+
  19. Requires: %{name} = %{version}-%{release}
  20. Conflicts: usbmuxd < 1.0.9
  21. %description utils
  22. Utilities for Apple's iOS devices
  23. %package devel
  24. Summary: Development package for %{name}
  25. Summary(ja): %{name} の開発用パッケージ
  26. Group: Development/Libraries
  27. Requires: %{name} = %{version}-%{release}
  28. Conflicts: usbmuxd-devel < 1.0.9
  29. %description devel
  30. Files for development with %{name}.
  31. %prep
  32. %setup -q
  33. %build
  34. %configure --disable-static
  35. sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  36. sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  37. make %{?_smp_mflags} V=1
  38. %install
  39. make install DESTDIR=%{buildroot} INSTALL='install -p'
  40. #Remove libtool archives.
  41. find %{buildroot} -name '*.la' -exec rm -f {} ';'
  42. %check
  43. make check
  44. %post -p /sbin/ldconfig
  45. %postun -p /sbin/ldconfig
  46. %files
  47. %defattr(-,root,root,-)
  48. %doc AUTHORS COPYING NEWS README
  49. %{_libdir}/libusbmuxd.so.*
  50. %files utils
  51. %defattr(-,root,root,-)
  52. %{_bindir}/iproxy
  53. %files devel
  54. %defattr(-,root,root,-)
  55. %{_includedir}/usbmuxd*
  56. %{_libdir}/pkgconfig/libusbmuxd.pc
  57. %{_libdir}/libusbmuxd.so
  58. %changelog
  59. * Thu May 21 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.0.10-1
  60. - new upstream release
  61. * Tue Jul 08 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.0.9-1
  62. - initial build for Vine Linux
  63. * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.9-2
  64. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
  65. * Sat Mar 22 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.0.9-1
  66. - Initial package