12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- # This package is maintained with CVS. Please do not change on local.
- # If you find a BUG, report to Vine@vinelinux.org or mailing list or BTS.
- # $Id: vbootstrap.spec,v 1.4 2009/06/28 15:54:18 daisuke Exp $
- %define version 0.0.2
- Summary: bootstrap scripts to create a basic Vine Linux system
- Summary(ja): Vine Linux の基本システムを作成するためのスクリプト
- Name: vbootstrap
- Version: %{version}
- Release: 1%{?_dist_release}
- License: public domain
- Group: Development/Tools
- Url: http://trac.vinelinux.org/wiki/VineBootstrap
- Source0: %{name}-%{version}.tar.bz2
- Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildArch: noarch
- BuildRequires: sed
- Requires: bash, apt
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: daisuke, munepi
- %description
- vbootstrap is used to create a basic Vine Linux system on existing Vine Linux
- system. It uses rpm and apt to install basic rpm package into a directory
- which can be chrooted into.
- %description -l ja
- vbootstrap は Vine Linux の基本システムを既存の Vine Linux システム上で
- 作成するスクリプトです。rpm および apt を利用して、指定したディレクトリ
- 以下に基本の rpm パッケージをインストールし、chroot できるようにします。
- %prep
- [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
- %setup
- %build
- make
- %install
- make DESTDIR=$RPM_BUILD_ROOT install
- %ifnarch x86_64
- rm -f $RPM_BUILD_ROOT%{_datadir}/vbootstrap/*/VineSeed_i386
- %endif
- %clean
- [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
- %files
- %defattr(-,root,root)
- %{_sbindir}/vbootstrap
- %{_sbindir}/vbuilder
- %dir %{_datadir}/vbootstrap
- %{_datadir}/vbootstrap/*
- %changelog
- * Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.2-1
- - add vbuilder
- * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.1-1
- - initial build
|