diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-09-06T08·17+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-09-06T08·17+0000 |
commit | fb28cfc86dff6bbacb71f69a862afd3384aee986 (patch) | |
tree | 3b23c10977dd460aa4924eccc3b35b9afaf39bac /nix.spec.in | |
parent | 5c443b65501903f636b00b908bb8eb10e022402e (diff) |
* Add some variability to RPM spec files: allow setuid options to be
set on the rpmbuild command line.
Diffstat (limited to 'nix.spec.in')
-rw-r--r-- | nix.spec.in | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/nix.spec.in b/nix.spec.in index 0fe3fb64a85b..fc34067c179c 100644 --- a/nix.spec.in +++ b/nix.spec.in @@ -1,10 +1,20 @@ +# This RPM accepts the following defininitions (which can be passed +# using `--define' to rpmbuild, e.g., --define 'enable_setuid yes'): +# enable_setuid: if non-empty, pass `--enable-setuid' to configure +# nix_user: if set, pass as `--with-nix-user' to configure +# nix_group: if set, pass as `--with-nix-group' to configure + +%{!?enable_setuid: %define enable_setuid ""} +%{!?nix_user: %define nix_user ""} +%{!?nix_group: %define nix_group ""} + Summary: The Nix software deployment system Name: nix Version: @version@ Release: 1 License: GPL -Group: WeetNiet -URL: http://www.cs.uu.nl/groups/ST/twiki/bin/view/Trace/NixDeploymentSystem +Group: Software Deployment +URL: http://www.cs.uu.nl/groups/ST/Trace/Nix Source0: %{name}-@version@.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot %define _prefix /nix @@ -13,13 +23,23 @@ Requires: /usr/bin/perl %description -Nix is a software deployment system. +Nix is a system for software deployment. %prep %setup -q %build -./configure --prefix=%{_prefix} +extraFlags= +if test -n "%{enable_setuid}"; then + extraFlags="$extraFlags --enable-setuid" + if test -n "%{nix_user}"; then + extraFlags="$extraFlags --with-nix-user=%{nix_user}" + fi + if test -n "%{nix_group}"; then + extraFlags="$extraFlags --with-nix-group=%{nix_group}" + fi +fi +./configure --prefix=%{_prefix} $extraFlags make make check |