-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathffcall.spec
More file actions
62 lines (46 loc) · 1.37 KB
/
ffcall.spec
File metadata and controls
62 lines (46 loc) · 1.37 KB
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
%define name ffcall
%define version 1.9
%define release 1
%define serial 1
Summary: Libraries that can be used to build foreign function call interfaces.
Name: %{name}
Version: %{version}
Release: %{release}
Serial: %{serial}
Copyright: GPL
Group: Development/Libraries
Vendor: The GNUstep Project
URL: ftp://ftp.santafe.edu/pub/gnu/
Source: %{name}-%{version}.tar.gz
BuildRoot: /var/tmp/%{name}-%{version}
Packager: Adam Fedor <fedor@gnu.org>
%description
This is a collection of four libraries which can be used to build
foreign function call interfaces in embedded interpreters.
The four packages are:
avcall - calling C functions with variable arguments
vacall - C functions accepting variable argument prototypes
trampoline - closures as first-class C functions
callback - closures with variable arguments as first-class C functions
(a reentrant combination of vacall and trampoline)
%prep
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=$RPM_BUILD_ROOT/usr
make
%install
if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi
mkdir -p $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT/usr install
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%clean
if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi
%files
%defattr(-,root,root)
%doc COPYING NEWS README PLATFORMS
/usr/include/*
/usr/lib/*
/usr/man/*
/usr/share/*
%changelog