File non-position-independent-exec.spec of Package non-position-independent-exec
#
# spec file for package non-position-independent-exec
#
# Copyright (c) 2019 SUSE LLC
#
# 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: non-position-independent-exec
Version: 1.0
Release: 0
Summary: A package for non-position-independent-exec testing
License: MIT
URL: https://www.non-position-independent-exec.com
Source: source.tar.gz
%description
The hello executable is not position independent.
%prep
%setup -q -n source
%build
gcc -no-pie -o hello hello.c
%install
mkdir -p %{buildroot}%{_bindir}/
install -m 755 hello %{buildroot}%{_bindir}/hello
%files
%{_bindir}/hello
%changelog