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