vbootstrap.spec 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # This package is maintained on trac svn repository. Please do not change on local.
  2. # If you find a BUG, please report to Vine@vinelinux.org or mailing list or BTS.
  3. %define version 0.0.4
  4. Summary: bootstrap scripts to create a basic Vine Linux system
  5. Summary(ja): Vine Linux の基本システムを作成するためのスクリプト
  6. Name: vbootstrap
  7. Version: %{version}
  8. Release: 1%{?_dist_release}
  9. License: public domain
  10. Group: Development/Tools
  11. Url: http://trac.vinelinux.org/wiki/VineBootstrap
  12. Source0: %{name}-%{version}.tar.bz2
  13. Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
  14. BuildArch: noarch
  15. BuildRequires: sed
  16. Requires: bash, apt
  17. Vendor: Project Vine
  18. Distribution: Vine Linux
  19. Packager: daisuke, munepi
  20. %description
  21. vbootstrap is used to create a basic Vine Linux system on existing Vine Linux
  22. system. It uses rpm and apt to install basic rpm package into a directory
  23. which can be chrooted into.
  24. %description -l ja
  25. vbootstrap は Vine Linux の基本システムを既存の Vine Linux システム上で
  26. 作成するスクリプトです。rpm および apt を利用して、指定したディレクトリ
  27. 以下に基本の rpm パッケージをインストールし、chroot できるようにします。
  28. %prep
  29. [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
  30. %setup
  31. %build
  32. make
  33. %install
  34. make DESTDIR=$RPM_BUILD_ROOT install
  35. %clean
  36. [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
  37. %files
  38. %defattr(-,root,root)
  39. %{_sbindir}/vbootstrap
  40. %{_sbindir}/vbuilder
  41. %dir %{_datadir}/vbootstrap
  42. %{_datadir}/vbootstrap/*
  43. %changelog
  44. * XXX MMM DD 2009 <> 0.0.4-1
  45. - updated vbuilder.sh.in
  46. - fixed to check a chroot archtecture
  47. * Tue Sep 01 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-2
  48. - rebuilt to add signature
  49. * Mon Aug 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-1
  50. - support 5.0 (by daisuke-san)
  51. - update vbuilder.sh.in
  52. - check chroot archtecture
  53. * Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.2-1
  54. - add vbuilder
  55. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.1-1
  56. - initial build