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

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

upgrade to 0.0.4; added vbuilder.conf.in

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.4
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* Sun Sep 13 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.4-1
63- added vine-release in BASE_PKGS of scripts/*
64- added vbuilder.conf
65- updated vbuilder.sh.in
66
67* Tue Sep 01 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-2
68- rebuilt to add signature
69
70* Mon Aug 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-1
71- support 5.0 (by daisuke-san)
72- update vbuilder.sh.in
73  - check chroot archtecture
74
75* Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.2-1
76- add vbuilder
77
78* Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.1-1
79- initial build
Note: See TracBrowser for help on using the repository browser.