sitecopy-vl.spec 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Name: sitecopy
  2. Summary: sitecopy is for easily maintaining remote web sites.
  3. Summary(ja): sitecopy はリモートでのウェブサイトの管理を楽にします。
  4. Version: 0.16.6
  5. Release: 4%{?_dist_release}
  6. License: GPLv2+
  7. Group: Applications/Internet
  8. URL: http://www.manyfish.co.uk/sitecopy/
  9. Source0: http://www.manyfish.co.uk/sitecopy/%{name}-%{version}.tar.gz
  10. Patch0: configure-%{version}.patch
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. BuildRequires: neon-devel
  13. Vendor: Project Vine
  14. Distribution: Vine Linux
  15. %description
  16. sitecopy is for easily maintaining remote web sites. The program will
  17. upload files to the server which have changed locally, and delete files
  18. from the server which have been removed locally, to keep the remote
  19. site synchronized with the local site with a single command.
  20. %description -l ja
  21. sitecopy はリモートでのウェブサイトの管理を楽にします。
  22. たったひとつのコマンドでローカルのホストで更新のあったファイルや、削除された
  23. ファイルをサーバ上のファイルに反映させる事により常にローカルホストとサーバを
  24. 同調させることが出来ます。
  25. %prep
  26. %setup -q
  27. %patch0 -p1 -b .configure
  28. # Forcibly prevent use of bundled neon/expat/gettext sources.
  29. rm -r lib/neon/*.[ch] intl/*.[ch]
  30. %build
  31. %configure --with-neon
  32. make %{?_smp_mflags}
  33. %install
  34. rm -rf $RPM_BUILD_ROOT
  35. make install DESTDIR=$RPM_BUILD_ROOT
  36. # remove unpacked files
  37. rm -rf $RPM_BUILD_ROOT%{_prefix}/doc
  38. rm -rf $RPM_BUILD_ROOT%{_mandir}/fr
  39. %find_lang %{name}
  40. %clean
  41. rm -rf $RPM_BUILD_ROOT
  42. %files -f %{name}.lang
  43. %defattr(-,root,root)
  44. %doc COPYING ChangeLog NEWS README THANKS TODO
  45. %doc doc/update.sh
  46. %{_bindir}/sitecopy
  47. #%{_mandir}/*/man1/sitecopy.1.gz
  48. %{_mandir}/man1/sitecopy.1.gz
  49. %{_datadir}/sitecopy
  50. %changelog
  51. * Tue Jan 5 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 0.16.6-4
  52. - rebuilt with latest VineSeed env.
  53. * Tue Nov 11 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.16.6-3
  54. - updated Patch0
  55. * Mon May 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16.6-2
  56. - add Patch0 (sitecopy-neon-0.29-vine.patch)
  57. * Thu Mar 24 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.16.6-1
  58. - updated to 0.16.6
  59. - updated URL
  60. - rebuilt with new toolchains
  61. * Sat Oct 11 2008 Shu KONNO <owa@bg.wakwak.com> 0.16.1-1vl5
  62. - applied new versioning policy, spec in utf-8
  63. * Sun Mar 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.16.1-0vl1
  64. - new upstream release
  65. - added BuildRequires: neon-devel, zlib-devel
  66. * Thu Jun 16 2005 TOSHI <toshi-52@s5.dion.ne.jp> 0.15.1-0vl2
  67. -add %doc
  68. -A revision %files
  69. * Sun May 22 2005 TOSHI <toshi-52@s5.dion.ne.jp> 0.15.1-0vl1
  70. -First Update!
  71. - initial build for Vine Linux
  72. # end of file