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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# SPDX-License-Identifier: CC0-1.0
%bcond_without notes
Name: hello
Version: 0
Release: 1%{?dist}%{!?with_notes:.nonotes}
Summary: Aloha!
License: CC0
BuildRequires: binutils >= 2.39
BuildRequires: gcc
BuildRequires: rpmdevtools
Source0: rpm/redhat-package-notes.in
%description
Test with:
objdump -s -j .note.package %{_bindir}/hello
objdump -s -j .note.package %{_libdir}/libhello.so
%prep
%setup -cT
set -eo pipefail
cat <<EOF >libhello.c
const char* greeting(void) {
return "Hello";
}
EOF
cat <<EOF >hello.c
#include <stdio.h>
extern char* greeting(void);
int main() {
puts(greeting());
return 0;
}
EOF
%build
set -eo pipefail
%if %{with notes}
sed "s|@OSCPE@|$(cat /usr/lib/system-release-cpe)|" %{SOURCE0} >redhat-package-notes
%endif
LDFLAGS="%{build_ldflags} %{?with_notes:-specs=$PWD/redhat-package-notes}"
CFLAGS="%{build_cflags}"
gcc -Wall -fPIC -o libhello.so -shared libhello.c $CFLAGS $LDFLAGS
gcc -Wall -o hello hello.c libhello.so $CFLAGS $LDFLAGS
%install
set -eo pipefail
install -Dt %{buildroot}%{_libdir}/ libhello.so
install -Dt %{buildroot}%{_bindir}/ hello
%check
set -eo pipefail
%if %{with notes}
objdump -s -j .note.package ./hello
objdump -s -j .note.package ./libhello.so
%endif
%files
%{_bindir}/hello
%{_libdir}/libhello.so
%changelog
* Wed Feb 3 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0-1
- Test
|