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