]> git.pld-linux.org Git - packages/daemon.git/commitdiff
- new spec
authorJacek Konieczny <jajcus@pld-linux.org>
Thu, 8 May 2003 08:46:31 +0000 (08:46 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    daemon.spec -> 1.1

daemon.spec [new file with mode: 0644]

diff --git a/daemon.spec b/daemon.spec
new file mode 100644 (file)
index 0000000..76ad105
--- /dev/null
@@ -0,0 +1,38 @@
+Summary:       Daemon turns other process into daemons.
+Name:          daemon
+Version:       0.6
+Release:       1
+License:       GPL
+Group:         Daemons
+Source0:       http://libslack.org/daemon/download/%{name}-%{version}.tar.gz
+URL:           http://libslack.org/daemon/
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Daemon turns other process into daemons. There are many tasks that need to be
+performed to correctly set up a daemon process. This can be tedious. Daemon
+performs these tasks for other processes. 
+
+%prep
+%setup -q
+
+%build
+conf/linux
+make CC="%{__cc}" CCFLAGS="%{rpmcflags}" APP_INSDIR="%{_sbindir}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       APP_INSDIR=$RPM_BUILD_ROOT%{_sbindir} \
+       APP_MANDIR=$RPM_BUILD_ROOT%{_mandir}/man1 \
+       FMT_MANDIR=tmp
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README
+%attr(755,root,root) %{_sbindir}/*
+%{_mandir}/man1/*
This page took 0.151505 seconds and 4 git commands to generate.