File macros.epel-rpm-macros of Package epel-rpm-macros
1
# epel macros
2
3
%epel 8
4
5
# Mono macros requested in rhbz 1295117
6
%mono_arches %{ix86} x86_64 sparc sparcv9 ia64 %{arm} alpha s390x ppc ppc64 ppc64le
7
%_monodir %{_prefix}/lib/mono
8
%_monogacdir %{_monodir}/gac
9
10
# A directory for rpm macros
11
%rpmmacrodir /usr/lib/rpm/macros.d
12
13
# Upstream RPM has this in Fedora, obsoleting the one above.
14
%_rpmmacrodir /usr/lib/rpm/macros.d
15
16
# A directory for appdata metainfo. The EPEL value differs from that of F28+.
17
%_metainfodir %{_datadir}/appdata
18
19
# EL7 doesn't have macros.vim the vim-filesystem package, so copy the
20
# Fedora value over to EPEL.
21
%vimfiles_root %{_datadir}/vim/vimfiles
22
23
# Bash completions; not in bash to not intefere with install ordering
24
%bash_completion_dir /usr/share/bash-completion/completions/
25
26
# vpath macros, backported from Fedora
27
# directory where CMakeLists.txt/meson.build/etc. are placed
28
%_vpath_srcdir .
29
30
# directory (doesn't need to exist) where all generated build files will be placed
31
%_vpath_builddir %_target_platform
32
33
# ldconfig macros, backported from Fedora.
34
%ldconfig /sbin/ldconfig
35
%ldconfig_post %{?ldconfig:%post -p %ldconfig}
36
%ldconfig_postun %{?ldconfig:%postun -p %ldconfig}
37
%ldconfig_scriptlets(n:) %{?ldconfig:\
38
%ldconfig_post %{?*} %{-n:-n %{-n*}}\
39
%ldconfig_postun %{?*} %{-n:-n %{-n*}}\
40
}
41
42
# Various build flag macros, backported from Fedora
43
%build_cflags %{optflags}
44
%build_cxxflags %{optflags}
45
%build_fflags %{optflags} -I%{_fmoddir}
46
%build_ldflags %{__global_ldflags}
47
48
%set_build_flags \
49
CFLAGS="${CFLAGS:-%{build_cflags}}" ; export CFLAGS ; \
50
CXXFLAGS="${CXXFLAGS:-%{build_cxxflags}}" ; export CXXFLAGS ; \
51
FFLAGS="${FFLAGS:-%{build_fflags}}" ; export FFLAGS ; \
52
FCFLAGS="${FCFLAGS:-%{build_fflags}}" ; export FCFLAGS ; \
53
LDFLAGS="${LDFLAGS:-%{build_ldflags}}" ; export LDFLAGS
54