wok view gmp/receipt @ rev 25668

Up git (2.44.0), glances (3.4.0.3), glpi (0.0.12), gmp (6.3.0), gnutls (3.8.3), hdf5 (1.14.3), jpeg (9f)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 25 15:02:28 2024 +0000 (2 months ago)
parents 3c575401ce94
children
line source
1 # SliTaz package receipt
3 PACKAGE="gmp"
4 VERSION="6.3.0"
5 CATEGORY="development"
6 SHORT_DESC="GNU Multiple Precision Arithmetic Library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/gmp/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="binutils m4"
16 HOST_ARCH="i486 arm"
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/current stable/!d;s|.* is ||;s|,.*||'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure \
28 --enable-cxx \
29 $CONFIGURE_ARGS &&
30 # make -j > 1 install fails.
31 make &&
32 make -j 1 install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cook_copy_files *.so*
39 }