blob: 240b0b371231d369b26c7e51d2a9cbff89f7b4b0 (
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
|
%define name multiarch-utils
%define version 1.0
%define release 1mdk
Summary: Tools to help creation of multiarch binaries and includes
Name: %{name}
Version: %{version}
Release: %{release}
Source0: %{name}-%{version}.tar.bz2
License: GPL
Group: Development/Other
Url: http://www.mandrakelinux.com/
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
%description
multiarch-utils is a collection of utilities, including:
* multiarch-platform: outputs base directory for arch specific tools
* multiarch-dispatch: dispatch a tool according to running personality
* mkmultiarch: helper script used for rpm creation
%prep
%setup -q
%build
%install
rm -rf $RPM_BUILD_ROOT
%makeinstall_std
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc ChangeLog
%{_bindir}/mkmultiarch
%{_bindir}/multiarch-platform
%{_bindir}/multiarch-dispatch
%{_includedir}/multiarch-dispatch.h
%changelog
* Wed Jan 12 2005 Gwenole Beauchesne <gbeauchesne@mandrakesoft.com> 1.0-1mdk
- initial release
|