]> git.pld-linux.org Git - packages/devtodo.git/blob - devtodo.spec
- updated to 0.1.17
[packages/devtodo.git] / devtodo.spec
1 Summary:        Todo list managment
2 Summary(pl):    Zarz±dzanie list± spraw do zrobienia
3 Name:           devtodo
4 Version:        0.1.17
5 Release:        1
6 License:        GPL
7 Group:          Development/Tools
8 Source0:        http://devtodo.sourceforge.net/?%{version}/%{name}-%{version}.tar.gz
9 Patch0:         %{name}-include.patch
10 Patch1:         %{name}-am_fix.patch
11 URL:            http://devtodo.sourceforge.net/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Developer Todo is a program to display and manage a hierarchical,
18 prioritised list of outstanding work, or just reminders.
19
20 The program itself is assisted by a few shell scripts that override
21 default builtins. Specifically, cd, pushd and popd are overridden so
22 that when using one of these commands to enter a directory, the todo
23 will display any outstanding items in that directory.
24
25 %description -l pl
26 Developer Todo jest programem do wy¶wietlania i zarz±dzania
27 hierarchiczn±, list± zaleg³ych prac z wyznaczonymi priorytetami, lub
28 po prostu przypomnieniami.
29
30 Sam program jest wspomagany kilkoma skryptami pow³oki, które zastêpuj±
31 domy¶lne, wbudowane polecenia, takie jak cd, pushd i popd. Jest to
32 potrzebne aby podczas wchodzenia do katalogu, przy u¿yciu wymienionych
33 komend, wypisywana by³a lista zaleg³ych rzeczy do zrobienia w danym
34 katalogu.
35
36 %prep
37 %setup -q
38 %patch0 -p1
39 %patch1 -p1
40
41 %build
42 rm -f missing
43 %{__aclocal}
44 %{__autoconf}
45 %{__automake}
46 %configure \
47         --enable-shared
48 %{__make}
49
50 %install
51 rm -rf $RPM_BUILD_ROOT
52 %{__make} install DESTDIR=$RPM_BUILD_ROOT
53
54 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/{tda,tdd,tde,tdr,todo}.1.gz
55 echo ".so devtodo.1" > $RPM_BUILD_ROOT%{_mandir}/man1/tda.1
56 echo ".so devtodo.1" > $RPM_BUILD_ROOT%{_mandir}/man1/tdd.1
57 echo ".so devtodo.1" > $RPM_BUILD_ROOT%{_mandir}/man1/tde.1
58 echo ".so devtodo.1" > $RPM_BUILD_ROOT%{_mandir}/man1/tdr.1
59 echo ".so devtodo.1" > $RPM_BUILD_ROOT%{_mandir}/man1/todo.1
60
61 %clean
62 rm -rf $RPM_BUILD_ROOT
63
64 %files
65 %defattr(644,root,root,755)
66 %doc AUTHORS ChangeLog NEWS QuickStart README TODO doc/todorc.example doc/*sh
67 %attr(755,root,root) %{_bindir}/*
68 %{_mandir}/man1/*
69 %config(noreplace) %{_sysconfdir}/*
This page took 0.052788 seconds and 3 git commands to generate.