source: projects/vbootstrap/trunk/vbootstrap.spec @ 314

Revision 314, 2.1 KB checked in by munepi, 17 years ago (diff)

vbuilder.sh.in: fixed to check a chroot archtecture

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