-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daemonizer.spec.in
43 lines (34 loc) · 1020 Bytes
/
daemonizer.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
%define version @PACKAGE_VERSION@
%define release 0
%define name daemonizer
%define packagename daemonizer
%define sourcename daemonizer
Summary: daemonizer is program to start a process and detach it from the terminal
Name: %{name}
Version: %{version}
Release: %{release}%{?dist}
License: Apache
Packager: Matteo Corti <matteo.corti@gmail.com>
Group: Applications/System
BuildRoot: %{_tmppath}/%{name}-%{version}-root
Source: %{name}-%{version}.tar.gz
%description
daemonizer is program to start a process and detach it from the terminal
%prep
%setup
%build
%configure %{_prefix}/usr
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%makeinstall
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, 0644)
%{_mandir}/man1/daemonizer.1.gz
%doc AUTHORS ChangeLog NEWS README INSTALL TODO COPYING VERSION COPYRIGHT LICENSE
%attr(0755, root, root) %{_prefix}/bin/daemonizer
%changelog
* Thu Apr 17 2008 Matteo Corti <matteo.corti@id.ethz.ch> - 0.9.0
- Initial package