wok view gmp/receipt @ rev 21817

updated mlt (6.14.0 -> 6.16.0)
author Hans-G?nter Theisgen
date Mon Aug 19 17:12:45 2019 +0100 (2019-08-19)
parents e56f9ed5622e
children eb86a8841d2a
line source
1 # SliTaz package receipt
3 PACKAGE="gmp"
4 VERSION="6.1.2"
5 CATEGORY="development"
6 SHORT_DESC="GNU Multiple Precision Arithmetic Library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://gmplib.org/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 BUILD_DEPENDS="binutils m4"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --enable-cxx \
21 $CONFIGURE_ARGS &&
22 # -j > 1 make install fails.
23 make && make -j 1 install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }