1 |
blino |
462 |
%define name multiarch-utils |
2 |
blino |
485 |
%define version 1.0.11 |
3 |
|
|
%define release %mkrel 1 |
4 |
blino |
462 |
|
5 |
|
|
Summary: Tools to help creation of multiarch binaries and includes |
6 |
|
|
Name: %{name} |
7 |
|
|
Version: %{version} |
8 |
|
|
Release: %{release} |
9 |
|
|
Source0: %{name}-%{version}.tar.bz2 |
10 |
|
|
License: GPL |
11 |
|
|
Group: Development/Other |
12 |
|
|
Url: http://www.mandrivalinux.com/ |
13 |
|
|
BuildArch: noarch |
14 |
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot |
15 |
|
|
%define macros %{_sysconfdir}/rpm/macros.d/multiarch.macros |
16 |
|
|
|
17 |
|
|
%description |
18 |
|
|
multiarch-utils is a collection of helper utilities to dispatch |
19 |
|
|
binaries and include files during RPM package build. |
20 |
|
|
|
21 |
|
|
%prep |
22 |
|
|
%setup -q |
23 |
|
|
|
24 |
|
|
%build |
25 |
|
|
|
26 |
|
|
%install |
27 |
|
|
rm -rf %{buildroot} |
28 |
|
|
%makeinstall_std |
29 |
|
|
|
30 |
|
|
%clean |
31 |
|
|
rm -rf %{buildroot} |
32 |
|
|
|
33 |
|
|
%files |
34 |
|
|
%defattr(-,root,root) |
35 |
|
|
%doc NEWS ChangeLog |
36 |
|
|
%{_bindir}/multiarch-platform |
37 |
|
|
%{_bindir}/multiarch-dispatch |
38 |
|
|
%{_includedir}/multiarch-dispatch.h |
39 |
|
|
%{macros} |
40 |
|
|
%{_prefix}/lib/rpm/mkmultiarch |
41 |
|
|
%{_prefix}/lib/rpm/check-multiarch-files |
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|