wok view libffcall/receipt @ rev 23028

updated libffcall (2.1 -> 2.2)
author Hans-G?nter Theisgen
date Tue Mar 03 16:19:17 2020 +0100 (2020-03-03)
parents ecbdf313714b
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="libffcall"
4 VERSION="2.2"
5 CATEGORY="development"
6 SHORT_DESC="Foreign function call libraries."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/software/libffcall/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make -j1 &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
30 cp -a $install/usr/include $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 }