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

Revision 135, 1.9 KB checked in by munepi, 15 years ago (diff)

update vbuilder.sh.in

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.3
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%ifnarch x86_64
50rm -f $RPM_BUILD_ROOT%{_datadir}/vbootstrap/*/VineSeed_i386
51%endif
52
53%clean
54[ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
55
56
57%files
58%defattr(-,root,root)
59%{_sbindir}/vbootstrap
60%{_sbindir}/vbuilder
61%dir %{_datadir}/vbootstrap
62%{_datadir}/vbootstrap/*
63
64
65%changelog
66* Sat Jul 18 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-1
67- update vbuilder.sh.in
68
69* Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.2-1
70- add vbuilder
71
72* Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.1-1
73- initial build
Note: See TracBrowser for help on using the repository browser.