| 1 | Summary: Todo is a program to display and manage a hierarchical, prioritised list of outstanding tasks, jobs, or just reminders. |
|---|
| 2 | Name: devtodo |
|---|
| 3 | Version: @VERSION@ |
|---|
| 4 | Release: 1 |
|---|
| 5 | Copyright: GPL |
|---|
| 6 | Group: Development/Tools |
|---|
| 7 | Source: devtodo-%{PACKAGE_VERSION}.tar.gz |
|---|
| 8 | BuildRoot: /var/tmp/%{name}-buildroot |
|---|
| 9 | Packager: Alec Thomas <alec@korn.ch> |
|---|
| 10 | |
|---|
| 11 | %description |
|---|
| 12 | Todo is a program to display and manage a hierarchical, prioritised list of |
|---|
| 13 | outstanding work, or just reminders. |
|---|
| 14 | |
|---|
| 15 | The program itself is assisted by a few shell scripts that override default |
|---|
| 16 | builtins. Specifically, cd, pushd and popd are overridden so that when using |
|---|
| 17 | one of these commands to enter a directory, the todo will display any |
|---|
| 18 | outstanding items in that directory. |
|---|
| 19 | |
|---|
| 20 | For much more complete information please refer to the man page (devtodo(1)). |
|---|
| 21 | %prep |
|---|
| 22 | %setup -q |
|---|
| 23 | %build |
|---|
| 24 | CXXFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --sysconfdir=/etc |
|---|
| 25 | make RPM_OPT_FLAGS="$RPM_OPT_FLAGS" |
|---|
| 26 | |
|---|
| 27 | %install |
|---|
| 28 | make DESTDIR=$RPM_BUILD_ROOT install |
|---|
| 29 | |
|---|
| 30 | %clean |
|---|
| 31 | rm -rf $RPM_BUILD_ROOT |
|---|
| 32 | |
|---|
| 33 | %files |
|---|
| 34 | %defattr(-,root,root) |
|---|
| 35 | %doc AUTHORS README TODO COPYING INSTALL NEWS QuickStart doc/todorc.example doc/scripts.sh doc/scripts.tcsh ChangeLog |
|---|
| 36 | /usr/bin/devtodo |
|---|
| 37 | /usr/bin/todo |
|---|
| 38 | /usr/bin/tda |
|---|
| 39 | /usr/bin/tdr |
|---|
| 40 | /usr/bin/tde |
|---|
| 41 | /usr/bin/tdd |
|---|
| 42 | /usr/bin/tdl |
|---|
| 43 | /usr/man/man1/devtodo.1.gz |
|---|
| 44 | /usr/man/man1/todo.1.gz |
|---|
| 45 | /usr/man/man1/tda.1.gz |
|---|
| 46 | /usr/man/man1/tdr.1.gz |
|---|
| 47 | /usr/man/man1/tde.1.gz |
|---|
| 48 | /usr/man/man1/tdd.1.gz |
|---|
| 49 | /usr/man/man1/tdl.1.gz |
|---|
| 50 | %config /etc/todorc |
|---|
| 51 | %changelog |
|---|
| 52 | * Sat Dec 14 2002 Alec Thomas <alec@korn.ch> |
|---|
| 53 | - Added tdl stuff |
|---|
| 54 | * Thu Nov 8 2001 Alec Thomas <alec@korn.ch> |
|---|
| 55 | - Now include example scripts for sh/tcsh and gzip man pages due to extreme bizarreness of rpm. |
|---|
| 56 | * Wed Jul 11 2001 Alec Thomas <alec@korn.ch> |
|---|
| 57 | - Removed aclocal/autoheader/autoconf/automake use. |
|---|
| 58 | * Mon May 14 2001 Alec Thomas <alec@korn.ch> |
|---|
| 59 | - Initial RPMage. |
|---|