1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- %define fontname sawarabi-gothic
- %define _fontdir %{_datadir}/fonts/TrueType-%{fontname}
- Name: TrueType-%{fontname}
- Summary: sawarabi gothic font
- Summary(ja): さわらびゴシックフォント
- Version: 20100915
- Release: 2%{?_dist_release}
- License: CC-BY
- Group: User Interface/X
- URL: http://sourceforge.jp/projects/sawarabi-fonts/
- Source0: %{fontname}-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- Requires: TrueType-%{fontname}-doc
- %description
- Sawarabi gothic font is Japanese TrueType font what have been developed
- in opensource.
- %description -l ja
- さわらびゴシックフォントは、オープンソースで開発されている
- 日本語 TrueType フォントです。
- %package doc
- Summary: swarabi gothic font documents
- Summary(ja): さわらびゴシックフォントドキュメント
- Group: User Interface/X
- %description doc
- This package includes important documents for sawarabi gothic font
- includes enduser license.
- %description -l ja doc
- このパッケージにはさわらびゴシックフォントのライセンスを含む
- ドキュメント類が含まれています。
- %prep
- %setup -q -n %{fontname}
- %clean
- if test -n "${RPM_BUILD_ROOT}" && test "/" != "${RPM_BUILD_ROOT}"; then
- rm -rf ${RPM_BUILD_ROOT}
- fi
- %build
- %install
- rm -rf %{buildroot}
- mkdir -p $RPM_BUILD_ROOT%{_fontdir}
- cp -a *.ttf $RPM_BUILD_ROOT%{_fontdir}
- %post
- %__font_install_post %{_fontdir}
- %postun
- %__font_install_postun %{_fontdir}
- %files
- %{_fontdir}/*.ttf
- %files doc
- %doc *.txt
- %changelog
- * Fri Oct 8 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 20100915-2
- - fixed doc package description
- * Sat Sep 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 20100915-1
- - initial build for VineSeed
|