tegaki-python-vl.spec 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # -*- coding: utf-8 -*-
  2. Summary: Base Python library for the Tegaki project
  3. Summary(ja): Tegaki プロジェクトのための Python ベースライブラリ
  4. Name: tegaki-python
  5. Version: 0.3.1
  6. Release: 1%{?_dist_release}
  7. License: GPLv2
  8. Group: Development/Libraries
  9. URL: http://www.tegaki.org/
  10. Source0: http://www.tegaki.org/releases/%{version}/%{name}-%{version}.tar.gz
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
  12. Requires: python >= 2.4 zinnia-python >= 0.05
  13. BuildRequires: python-devel >= 2.4
  14. BuildArch: noarch
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. Packager: iwaim
  18. %description
  19. Base Python library for the Tegaki project.
  20. %description -l ja
  21. Tegaki プロジェクトのための Python ベースライブラリ
  22. %prep
  23. %setup -q
  24. %build
  25. %{__python} setup.py build
  26. %install
  27. %{__rm} -rf %{buildroot}
  28. %{__python} setup.py install --root %{buildroot}
  29. %clean
  30. %{__rm} -rf %{buildroot}
  31. %files
  32. %defattr(-,root,root,-)
  33. %doc AUTHORS COPYRIGHT README COPYING ChangeLog TODO
  34. %{python_sitelib}/tegaki
  35. %{python_sitelib}/tegaki_python*.egg-info
  36. %changelog
  37. * Wed Jun 9 2010 IWAI, Masaharu <iwai@alib.jp> 0.3.1-1
  38. - Initial build.