]> git.pld-linux.org Git - packages/daemon.git/blob - daemon.spec
- mass commit: cosmetics (removed trailing white spaces)
[packages/daemon.git] / daemon.spec
1 Summary:        Daemon turns other process into daemons
2 Summary(pl):    Daemon - zamiana innych procesów w demony
3 Name:           daemon
4 Version:        0.6
5 Release:        1
6 License:        GPL
7 Group:          Daemons
8 Source0:        http://libslack.org/daemon/download/%{name}-%{version}.tar.gz
9 # Source0-md5:  4e53183c2ed050516aa544ae3aa12600
10 URL:            http://libslack.org/daemon/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 Daemon turns other process into daemons. There are many tasks that
15 need to be performed to correctly set up a daemon process. This can be
16 tedious. Daemon performs these tasks for other processes.
17
18 %description -l pl
19 Daemon zamienia inne procesy w demony. Jest wiele zadañ, które trzeba
20 wykonaæ, aby poprawnie uruchomiæ demona. Mo¿e to byæ mêcz±ce. Daemon
21 wykonuje te zadania dla innych procesów.
22
23 %prep
24 %setup -q
25
26 %build
27 conf/linux
28 %{__make} \
29         CC="%{__cc}" \
30         CCFLAGS="%{rpmcflags}" \
31         APP_INSDIR="%{_sbindir}"
32
33 %install
34 rm -rf $RPM_BUILD_ROOT
35
36 %{__make} install \
37         APP_INSDIR=$RPM_BUILD_ROOT%{_sbindir} \
38         APP_MANDIR=$RPM_BUILD_ROOT%{_mandir}/man1 \
39         FMT_MANDIR=tmp
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %files
45 %defattr(644,root,root,755)
46 %doc README
47 %attr(755,root,root) %{_sbindir}/*
48 %{_mandir}/man1/*
This page took 0.067045 seconds and 4 git commands to generate.