12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- %define pkg_version 0.1
- %define pkg_release 1%{?_dist_release}
- Summary: update config files from etcskel
- Summary(ja): etcskel のファイルから設定ファイルを更新する
- Name: update-from-skel
- Version: %{pkg_version}
- Release: %{pkg_release}
- Source: %{name}-%{version}.tar.bz2
- License: GPLv3
- Group: Applications/Administration
- URL: http://vinelinux.org/
- #Requires:
- #BuildRequires:
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: yasumichi
- %description
- FIXME!!
- %description -l ja
- 違いがあれば、sdiff や vim を利用して更新します。
- %prep
- %setup -q
- %build
- %configure
- %{__make} %{?_smp_mflags}
- %install
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %{__make} install DESTDIR=${RPM_BUILD_ROOT}
- %find_lang %{name}
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %files -f %{name}.lang
- %defattr(-,root,root)
- %doc COPYING ChangeLog NEWS README
- %{_bindir}/%{name}
- %changelog
- * Wed Aug 10 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.1-1%{?_dist_release}
- - initial build for Vine Linux
|