123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- Summary: A handy little utility to display a tree view of directories.
- Summary(ja): ディレクトリのツリー構造を表示するお手軽ユーティリティ。
- Name: tree
- Version: 1.5.2.1
- Release: 1%{?_dist_release}
- License: GPL2
- Group: Applications/System
- Source: ftp://mama.indstate.edu/linux/tree/tree-%{version}.tgz
- URL: http://mama.indstate.edu/users/ice/tree/
- Buildroot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: glibc-devel
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: IKEDA Katsumi <ikeda@webmasters.gr.jp>
- %description
- Tree is a recursive directory listing program that produces a depth indented
- listing of files, which is colorized ala dircolors if the LS_COLORS environment
- variable is set and output is to tty.
- %description -l ja
- tree は再帰的にディレクトリを表示するプログラムで、ディレクトリの深さに従って
- 字下げしたファイルの一覧を生成します。LS_COLORS 環境変数が設定されていた場合、
- dircolors の様式でカラー化して tty に出力します。
- %prep
- %setup -q
- %build
- %{__make} prefix=%{_prefix} MANDIR=%{_mandir}/man1
- %install
- rm -rf $RPM_BUILD_ROOT
- %makeinstall MANDIR=$RPM_BUILD_ROOT%{_mandir}/man1
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root)
- %doc CHANGES LICENSE README
- %{_bindir}/tree
- %{_mandir}/man1/tree.1*
- %changelog
- * Tue Dec 2 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.5.2.1-1
- - new upstream release
- - spec in UTF-8
- * Mon May 19 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.1.1-1
- - new upstream release
- * Sun Sep 10 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.0-0vl2
- - changed Group to Applications/System
- * Fri Aug 20 2004 IKEDA Katsumi <ikeda@webmasters.gr.jp> 1.5.0-0vl1
- - Initial specfile
|