-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrossmingw32-libffi.spec
140 lines (112 loc) · 4.31 KB
/
crossmingw32-libffi.spec
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
Summary: Foreign Function Interface library (cross MinGW32 version)
Summary(pl.UTF-8): Biblioteka Foreign Function Interface (wersja skrośna MinGW32)
Name: crossmingw32-libffi
Version: 3.4.8
Release: 1
License: MIT-like
Group: Libraries
#Source0Download: https://github.com/libffi/libffi/releases/
Source0: https://github.com/libffi/libffi/releases/download/v%{version}/libffi-%{version}.tar.gz
# Source0-md5: ba5fc49d57d13b9e6cecd0c78d76688b
URL: http://www.sourceware.org/libffi/
BuildRequires: crossmingw32-gcc
BuildRequires: texinfo
Requires: crossmingw32-runtime
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%define no_install_post_strip 1
%define _enable_debug_packages 0
%define target i386-mingw32
%define target_platform i386-pc-mingw32
%define _sysprefix /usr
%define _prefix %{_sysprefix}/%{target}
%define _libdir %{_prefix}/lib
%define _pkgconfigdir %{_prefix}/lib/pkgconfig
%define _docdir %{_sysprefix}/share/doc
%define _dlldir /usr/share/wine/windows/system
%define __cc %{target}-gcc
%define __pkgconfig_provides %{nil}
%define __pkgconfig_requires %{nil}
%ifnarch %{ix86}
# arch-specific flags (like alpha's -mieee) are not valid for i386 gcc
%define optflags -O2
%endif
# -z options are invalid for mingw linker, most of -f options are Linux-specific
%define filterout_ld -Wl,-z,.*
%define filterout_c -f[-a-z0-9=]*
%description
The libffi library provides a portable, high level programming
interface to various calling conventions. This allows a programmer to
call any function specified by a call interface description at
run-time.
Ffi stands for Foreign Function Interface. A foreign function
interface is the popular name for the interface that allows code
written in one language to call code written in another language. The
libffi library really only provides the lowest, machine dependent
layer of a fully featured foreign function interface. A layer must
exist above libffi that handles type conversions for values passed
between the two languages.
This package contains the cross version for MinGW32.
%description -l pl.UTF-8
Biblioteka libffi dostarcza przenośny, wysokopoziomowy interfejs do
różnych konwencji wywołań funkcji. Pozwala to programiście wywołać
dowolną funkcję podaną przez opis interfejsu wywołania w czasie
działania programu.
FFI to skrót od Foreign Function Interface, czyli interfejsu do obcych
funkcji. Jest to potoczna nazwa interfejsu pozwalającego programowi
napisanemu w jednym języku wywoływać kod napisany w innym języku.
Biblioteka libffi daje tylko najniższą, zależną od maszyny warstwę
pełnego interfejsu. Potrzebne są wyższe warstwy do obsługi konwersji
typów dla wartości przekazywanych pomiędzy różnymi językami.
Ten pakiet zawiera wersję skrośną dla MinGW32.
%package static
Summary: Static libffi library (cross MinGW32 version)
Summary(pl.UTF-8): Statyczna biblioteka libffi (wersja skrośna MinGW32)
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description static
Static libffi library (cross MinGW32 version).
%description static -l pl.UTF-8
Statyczna biblioteka libffi (wersja skrośna MinGW32).
%package dll
Summary: Foreign Function Interface DLL library for Windows
Summary(pl.UTF-8): Biblioteka DLL Foreign Function Interface dla Windows
Group: Applications/Emulators
Requires: wine
%description dll
Foreign Function Interface DLL library for Windows.
%description dll -l pl.UTF-8
Biblioteka DLL Foreign Function Interface dla Windows.
%prep
%setup -q -n libffi-%{version}
%build
%configure \
--target=%{target} \
--host=%{target}
%{__make}
%install
rm -rf $RPM_BUILD_ROOT
%{__make} install \
DESTDIR=$RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT%{_dlldir}
%{__mv} $RPM_BUILD_ROOT%{_prefix}/bin/*.dll $RPM_BUILD_ROOT%{_dlldir}
%if 0%{!?debug:1}
%{target}-strip --strip-unneeded -R.comment -R.note $RPM_BUILD_ROOT%{_dlldir}/*.dll
%{target}-strip -g -R.comment -R.note $RPM_BUILD_ROOT%{_libdir}/*.a
%endif
%{__rm} -r $RPM_BUILD_ROOT{%{_mandir},%{_infodir}}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(644,root,root,755)
%doc ChangeLog* LICENSE README.md
%{_libdir}/libffi.dll.a
%{_libdir}/libffi.la
%{_includedir}/ffi.h
%{_includedir}/ffitarget.h
%{_pkgconfigdir}/libffi.pc
%files static
%defattr(644,root,root,755)
%{_libdir}/libffi.a
%files dll
%defattr(644,root,root,755)
%{_dlldir}/libffi-8.dll