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

Revision 330, 2.2 KB checked in by munepi, 17 years ago (diff)

vbuilder.sh.in: corrected some if conditions

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