mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
1c8abda2a8
now it has a zero.
47 lines
951 B
RPMSpec
47 lines
951 B
RPMSpec
%define _prefix /home/tinderbox2
|
|
|
|
# auto generate the version number based on the output of the date
|
|
# command.
|
|
|
|
%define _version %(eval "date '+%Y%m%d'")
|
|
|
|
Summary: Development monitoring tool
|
|
Name: tinderbox2-local-conf
|
|
Version: %{_version}
|
|
Release: 1
|
|
Copyright: MPL
|
|
Group: Development/Tools
|
|
Source: tar://tinderbox2_local_conf.tar.gz
|
|
Prefix: %{_prefix}
|
|
Buildroot: /var/tmp/%{name}-root
|
|
|
|
%description
|
|
|
|
The local configuration files for tinderbox2. This package customizes
|
|
tinderbox2 for the local use. The tinderbox2 package is genaric, this
|
|
package contains all the discriptions of the local system.
|
|
|
|
|
|
%prep
|
|
# empty prep
|
|
|
|
%build
|
|
#empty build
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT/%{_prefix}
|
|
mkdir -p $RPM_BUILD_ROOT/var/log/tinderbox2
|
|
|
|
cd $RPM_BUILD_ROOT/%{_prefix}
|
|
tar zxf %{_sourcedir}/tinderbox2_local_conf.tar.gz
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%files
|
|
%defattr(-,apache,apache)
|
|
%{_prefix}/local_conf/*
|
|
/var/log/tinderbox2
|