chrpath/chrpath.spec

57 lines
1.6 KiB
RPMSpec

#
# spec file for package chrpath
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
#
# 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 https://bugs.opensuse.org/
#
Name: chrpath
Version: 0.17
Release: 0
Summary: Modifies the dynamic library load path of compiled programs and libraries
License: GPL-2.0-or-later
Group: Development/Tools/Building
URL: https://codeberg.org/pere/chrpath
Source: https://codeberg.org/pere/chrpath/archive/release-%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: automake
%description
Chrpath allows you to modify the dynamic library load path (rpath and
runpath) of compiled programs. Currently, only removing and modifying the
rpath is supported. It cannot extend or add an rpath.
%prep
%autosetup -p1 -n %{name}
%build
autoreconf -fiv
%configure
%make_build
%install
%make_install doc_DATA=""
%check
# %%make_build check
%files
%license COPYING AUTHORS
%doc ChangeLog NEWS README
%{_bindir}/chrpath
%{_mandir}/man1/chrpath.1%{?ext_man}
%changelog