]> git.pld-linux.org Git - packages/daemon.git/blob - daemon.spec
- new spec
[packages/daemon.git] / daemon.spec
1 Summary:        Daemon turns other process into daemons.
2 Name:           daemon
3 Version:        0.6
4 Release:        1
5 License:        GPL
6 Group:          Daemons
7 Source0:        http://libslack.org/daemon/download/%{name}-%{version}.tar.gz
8 URL:            http://libslack.org/daemon/
9 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
10
11 %description
12 Daemon turns other process into daemons. There are many tasks that need to be
13 performed to correctly set up a daemon process. This can be tedious. Daemon
14 performs these tasks for other processes. 
15
16 %prep
17 %setup -q
18
19 %build
20 conf/linux
21 make CC="%{__cc}" CCFLAGS="%{rpmcflags}" APP_INSDIR="%{_sbindir}"
22
23 %install
24 rm -rf $RPM_BUILD_ROOT
25
26 %{__make} install \
27         APP_INSDIR=$RPM_BUILD_ROOT%{_sbindir} \
28         APP_MANDIR=$RPM_BUILD_ROOT%{_mandir}/man1 \
29         FMT_MANDIR=tmp
30
31 %clean
32 rm -rf $RPM_BUILD_ROOT
33
34 %files
35 %defattr(644,root,root,755)
36 %doc README
37 %attr(755,root,root) %{_sbindir}/*
38 %{_mandir}/man1/*
This page took 0.237816 seconds and 4 git commands to generate.