sitecopy-vl.spec 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. Name: sitecopy
  2. Summary: sitecopy is for easily maintaining remote web sites.
  3. Summary(ja): sitecopy はリモートでのウェブサイトの管理を楽にします。
  4. Version: 0.16.6
  5. Release: 1%{?_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. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: neon-devel zlib-devel
  12. Vendor: Project Vine
  13. Distribution: Vine Linux
  14. %description
  15. sitecopy is for easily maintaining remote web sites. The program will
  16. upload files to the server which have changed locally, and delete files
  17. from the server which have been removed locally, to keep the remote
  18. site synchronized with the local site with a single command.
  19. %description -l ja
  20. sitecopy はリモートでのウェブサイトの管理を楽にします。
  21. たったひとつのコマンドでローカルのホストで更新のあったファイルや、削除された
  22. ファイルをサーバ上のファイルに反映させる事により常にローカルホストとサーバを
  23. 同調させることが出来ます。
  24. %prep
  25. %setup -q
  26. %build
  27. %configure
  28. %__make
  29. %install
  30. %{__rm} -rf $RPM_BUILD_ROOT
  31. %makeinstall
  32. # remove unpacked files
  33. %{__rm} -rf $RPM_BUILD_ROOT%{_prefix}/doc
  34. %{__rm} -rf $RPM_BUILD_ROOT%{_mandir}/fr
  35. %clean
  36. %{__rm} -rf $RPM_BUILD_ROOT
  37. %files
  38. %defattr(-,root,root)
  39. %doc BUGS COPYING ChangeLog NEWS README README.gnome THANKS TODO
  40. %doc doc/update.sh
  41. %{_bindir}/sitecopy
  42. #%{_mandir}/*/man1/sitecopy.1.gz
  43. %{_mandir}/man1/sitecopy.1.gz
  44. %{_datadir}/locale/*/*/sitecopy.mo
  45. %{_datadir}/sitecopy
  46. %changelog
  47. * Thu Mar 24 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.16.6-1
  48. - updated to 0.16.6
  49. - updated URL
  50. - rebuilt with new toolchains
  51. * Sat Oct 11 2008 Shu KONNO <owa@bg.wakwak.com> 0.16.1-1vl5
  52. - applied new versioning policy, spec in utf-8
  53. * Sun Mar 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.16.1-0vl1
  54. - new upstream release
  55. - added BuildRequires: neon-devel, zlib-devel
  56. * Thu Jun 16 2005 TOSHI <toshi-52@s5.dion.ne.jp> 0.15.1-0vl2
  57. -add %doc
  58. -A revision %files
  59. * Sun May 22 2005 TOSHI <toshi-52@s5.dion.ne.jp> 0.15.1-0vl1
  60. -First Update!
  61. - initial build for Vine Linux
  62. # end of file