123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- %define build_vineseed %(grep -c VineSeed /etc/vine-release)
- Summary: Sources.list file for test category
- Summary(ja): test カテゴリ用の sources.list ファイル
- Name: apt-sourceslist-test
- Version: 0.1
- Release: 2%{?_dist_release}
- Source0: sources.list-vineseed-test
- License: GPL
- Group: Applications/Administration
- #URL:
- Requires: apt
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- %description
- This package contains source.list file for test category of VineSeed.
- You should install this package if you want to install test packages
- of VineSeed.
- %description -l ja
- このパッケージには VineSeed の test カテゴリ用の source.list ファイル
- を含んでいます。
- VineSeed の Test パッケージをインストールする場合はこのパッケージを
- インストールしてください。
- %install
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %{__mkdir_p} ${RPM_BUILD_ROOT}/%{_sysconfdir}/apt/sources.list.d
- %if %{build_vineseed}
- %{__install} -m 644 %{SOURCE0} ${RPM_BUILD_ROOT}/%{_sysconfdir}/apt/sources.list.d/test.list
- %endif
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %files
- %defattr(-,root,root)
- %config(noreplace) %verify(not mtime) %{_sysconfdir}/apt/sources.list.d/test.list
- %changelog
- * Sun Feb 01 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.1-2
- - add BuildArch: noarch
- * Sun Jan 25 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.1-1
- - initial build for Vine Linux
|