wok view libffi-dev/receipt @ rev 22345

tcc, unfs3: race condition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 17 20:40:16 2019 +0100 (2019-11-17)
parents 51b3e2d10e16
children a4e0ca27c317
line source
1 # SliTaz package receipt.
3 PACKAGE="libffi-dev"
4 VERSION="3.2.1"
5 CATEGORY="development"
6 SHORT_DESC="libffi, development files."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="MIT"
9 WEB_SITE="https://sourceware.org/libffi/"
11 WANTED="libffi"
12 DEPENDS="libffi pkg-config"
14 HOST_ARCH="i486 arm"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 mkdir -p $fs/usr/lib
20 mkdir -p $fs/usr/include
22 cp -a $install/usr/lib/*.*a $fs/usr/lib
23 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
24 cp -a $install/usr/lib/$WANTED-$VERSION $fs/usr/lib
26 # Copy the headers to the standard location
27 cp -a $install/usr/lib/$WANTED-$VERSION/include/* \
28 $fs/usr/include
29 }