c12acf4f5f
- Enable exluded architectures. Fixed by debian patch no-rpath-prebuilt.patch OBS-URL: https://build.opensuse.org/request/show/383109 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/patchelf?expand=0&rev=13
57 lines
1.6 KiB
RPMSpec
57 lines
1.6 KiB
RPMSpec
#
|
|
# spec file for package patchelf
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: patchelf
|
|
Version: 0.9
|
|
Release: 0
|
|
Summary: A utility for patching ELF binaries
|
|
License: GPL-3.0
|
|
Group: Development/Libraries/C and C++
|
|
Url: http://nixos.org/patchelf.html
|
|
Source: http://releases.nixos.org/%{name}/%{name}-%{version}/%{name}-%{version}.tar.bz2
|
|
Patch0: no-rpath-prebuilt.patch
|
|
BuildRequires: gcc-c++
|
|
|
|
%description
|
|
PatchELF is a simple utility for modifing existing ELF executables and
|
|
libraries. It can change the dynamic loader ("ELF interpreter") of
|
|
executables and change the RPATH of executables and libraries.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
make check
|
|
|
|
%install
|
|
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
|
rm %{buildroot}%{_datadir}/doc/patchelf/README
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README
|
|
%{_bindir}/patchelf
|
|
%{_mandir}/man1/patchelf.1%{ext_man}
|
|
|
|
%changelog
|