1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- %define src_name honoka-plugin-ascii
- %define version 0.9.1
- %define release 2%{_dist_release}
- %define honoka_version 0.9.0
- Name: scim-honoka-plugin-ascii
- Summary: An ASCII input plugin for HONOKA-TAN
- Summary(ja): ほのかたんのための ASCII 入力プラグイン
- Version: %{version}
- Release: %{release}
- Group: System Environment/Libraries
- License: GPLv2
- URL: http://nop.net-p.org/modules/pukiwiki/index.php?%5B%5Bhonoka%5D%5D
- Source0: %{src_name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: scim-honoka-devel >= %{honoka_version}
- BuildRequires: automake
- BuildRequires: libtool-ltdl
- %description
- scim-honoka-plugin-ascii is an ASCII input plugin for HONOKA-TAN.
- %description -l ja
- scim-honoka-plugin-ascii は ASCII 入力プラグインです.
- %prep
- %setup -q -n %{src_name}-%{version}
- %build
- [[ -f configure ]] || ./bootstrap
- %configure
- # (tv) parallel build is broken: --> OK???
- %{__make} %{?_smp_mflags}
- %install
- %{__rm} -rf $RPM_BUILD_ROOT
- %{__make} DESTDIR=$RPM_BUILD_ROOT install
- # remove unpackaged files
- rm -f $RPM_BUILD_ROOT%{_libdir}/scim-1.0/*/honoka/*.{a,la}
- %find_lang %{src_name}
- %clean
- %{__rm} -rf $RPM_BUILD_ROOT
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files -f %{src_name}.lang
- %defattr(-,root,root)
- %doc AUTHORS COPYING ChangeLog README.jp
- %{_libdir}/scim-1.0/*/honoka/*.so
- %changelog
- * Sat Oct 25 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.9.1-2
- - spec in utf-8
- * Sat Mar 22 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.9.1-1vl5
- - initial build for VineSeed
- ### end of file
|