sitecopy-vl.spec 2.0 KB

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