This repository has been archived on 2022-01-17. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-08-03 12:06:11 +02:00
|
|
|
name: libffi
|
|
|
|
version: 3.2.1
|
|
|
|
release: 1
|
|
|
|
sources: ftp://sourceware.org/pub/libffi/libffi-%{version}.tar.gz
|
2019-08-26 18:10:41 +02:00
|
|
|
|
2019-08-03 12:06:11 +02:00
|
|
|
@install
|
2019-09-05 23:55:03 +02:00
|
|
|
set -e
|
|
|
|
cd libffi-%{version}
|
2019-08-26 18:10:41 +02:00
|
|
|
make DESTDIR="%{pkg}" install
|
2019-09-05 23:55:03 +02:00
|
|
|
cd "%{pkg}"
|
|
|
|
mv ./%{prefix}/lib/libffi-%{version}/include ./%{prefix}
|
|
|
|
nuke ./%{prefix}/lib/libffi-%{version}
|
2019-08-03 12:06:11 +02:00
|
|
|
|