blob: a67458f7c4e7af0d9de7b4e85a39c71a0fdcca92 (
plain)
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
43
44
45
46
47
|
############################################
# Warning
# This package must be handled
# via /svn/soft/build_system/iurt/trunk/
############################################
%define name iurt
%define svn r320
%define release %mkrel 0.%svn.0
Name: %{name}
Version: 0.6.5
Release: %{release}
License: GPL
Summary: Packages rebuilder
Group: Development/Other
URL: svn://svn.mageia.org/svn/soft/build_system/iurt/trunk
Source: %{name}-%{version}-%{svn}.tar.gz
BuildRoot: %{_tmppath}/%{name}-buildroot
Requires: mkcd
BuildArch: noarch
%description
iurt is a collection of tools to create an automatic rebuild system. It
contains the rebuild script, iurt, as well as the scheduler, ulri, and the
upload script, emi.
%prep
%setup -q -n %{name}-%{version}
%install
rm -rf $RPM_BUILD_ROOT
%makeinstall DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_bindir}/emi
%{_bindir}/iurt
%{_bindir}/ulri
%{_sbindir}/iurt_root_command
%{perl_vendorlib}/Iurt
|