123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- Name: howm
- Version: 1.3.8
- Release: 1%{?_dist_release}
- License: GPL
- Group: Applications/Editors/Emacs
- URL: http://howm.sourceforge.jp/
- Source0: %{name}-%{version}.tar.gz
- Source1: %{name}-install.sh
- Source2: %{name}-remove.sh
- BuildRoot: %{_tmppath}/%{name}-root
- BuildArch: noarch
- Prereq: emacsen
- Summary: Emacs で断片的なメモをどんどんとるための環境
- %description
- Howm is a note-taking tool on Emacs. It is similar to emacs-wiki;
- you can enjoy hyperlinks and full-text search easily. It is not
- similar to emacs-wiki; it can be combined with any format.
- %description -l ja
- Emacs で断片的なメモをどんどんとるための環境です. 分類機能はあえてつけ
- ません. かわりに, 全文検索とメモ間リンクが手軽にできるようにしました.
- 自由書式なので改宗も不要 :-)
- %prep
- %setup -q
- %build
- %__rm -rf */Makefile.am */Makefile.in
- %install
- %__rm -rf %{buildroot}
- %__mkdir_p %{buildroot}%{_datadir}/emacs/site-lisp/%{name}
- %__mkdir_p %{buildroot}%{emacsen_pkgdir}/install
- %__mkdir_p %{buildroot}%{emacsen_pkgdir}/remove
- %__install -m 0644 *.el %{buildroot}%{_datadir}/emacs/site-lisp/%{name}
- %_installemacsenscript %{name} %{SOURCE1}
- %_removeemacsenscript %{name} %{SOURCE2}
- %clean
- %__rm -rf %{buildroot}
- %post
- if [ "$1" = 2 ]; then
- %_emacsenPackageRemove %{name}
- fi
- %_addemacsenlist %{name}
- %_emacsenPackageInstall %{name}
- %preun
- if [ "$1" = 0 ]; then
- %_emacsenPackageRemove %{name}
- %_removeemacsenlist %{name}
- fi
- %files
- %defattr(-,root,root)
- %doc COPYING ChangeLog doc en ext ja sample
- %{_datadir}/emacs/site-lisp/%{name}/
- %{emacsen_pkgdir}/install/%{name}
- %{emacsen_pkgdir}/remove/%{name}
- %changelog
- * Fri Jan 08 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.3.8-1
- - new upstream release
- - use %%{emacsen_pkgdir}
- * Sat Jan 10 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.3.7-1
- - new upstream release
- * Sat Nov 01 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.3.6-1
- - apply new versioning policy
- - spec in utf-8
- - source update
- # * Sat Aug 30 2008 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.3.6-0vl1
- # - new upstream
- * Tue Jan 09 2007 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.3.4-0vl1
- - New upstream version.
- - Change Group.
- * Sun May 15 2005 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.2.3-0vl1
- - New upstream version.
- * Sun Nov 21 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.2-0vl2
- - Fix howm-en-dir and howm-ja-dir.
- * Fri Oct 01 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.2-0vl1
- - New upstream version.
- * Mon Jun 14 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.1.2.1-0vl1
- - New upstream version.
- * Tue Feb 24 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.1.1-0vl1
- - New upstream version.
- * Wed Feb 11 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.1.0.4-0vl1
- - Initial build.
|