root/todo/trunk/devtodo.spec.in

Revision 290, 1.8 KB (checked in by athomas, 6 years ago)

Initial import.

Line 
1Summary: Todo is a program to display and manage a hierarchical, prioritised list of outstanding tasks, jobs, or just reminders.
2Name: devtodo
3Version: @VERSION@
4Release: 1
5Copyright: GPL
6Group: Development/Tools
7Source: devtodo-%{PACKAGE_VERSION}.tar.gz
8BuildRoot: /var/tmp/%{name}-buildroot
9Packager: Alec Thomas <alec@korn.ch>
10
11%description
12Todo is a program to display and manage a hierarchical, prioritised list of
13outstanding work, or just reminders.
14
15The program itself is assisted by a few shell scripts that override default
16builtins. Specifically, cd, pushd and popd are overridden so that when using
17one of these commands to enter a directory, the todo will display any
18outstanding items in that directory.
19
20For much more complete information please refer to the man page (devtodo(1)).
21%prep
22%setup -q
23%build
24CXXFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr --sysconfdir=/etc
25make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
26
27%install
28make DESTDIR=$RPM_BUILD_ROOT install
29
30%clean
31rm -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.
Note: See TracBrowser for help on using the browser.