wok-4.x annotate mpfr/receipt @ rev 12477

Up openssl 1.1.1n (bump packages curl, git, wget, python), up cherokee 1.2.104 and bdeps (automake, openldap, cyrus-sasl)
author Stanislas Leduc <shann@slitaz.org>
date Sun Apr 02 14:34:44 2023 +0000 (17 months ago)
parents dd0e8a306fc7
children
rev   line source
pankso@520 1 # SliTaz package receipt
pankso@520 2
pankso@520 3 PACKAGE="mpfr"
shann@12466 4 VERSION="3.1.2"
pankso@520 5 CATEGORY="development"
pankso@520 6 SHORT_DESC="C library for multiple-precision floating-point computations."
pankso@520 7 MAINTAINER="pankso@slitaz.org"
pankso@520 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@520 9 WEB_SITE="http://www.mpfr.org/"
pankso@520 10 WGET_URL="http://www.mpfr.org/mpfr-current/$TARBALL"
pankso@9741 11
pankso@9741 12 DEPENDS="gmp"
pankso@9750 13 BUILD_DEPENDS="gmp-dev"
pankso@520 14
pankso@520 15 # Rules to configure and make the package.
pankso@520 16 compile_rules()
pankso@520 17 {
pankso@520 18 cd $src
shann@12466 19 ./configure \
shann@12466 20 --enable-thread-safe \
shann@12466 21 $CONFIGURE_ARGS &&
pankso@10026 22 make && make install
pankso@520 23 }
pankso@520 24
pankso@520 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@520 26 genpkg_rules()
pankso@520 27 {
pankso@520 28 mkdir -p $fs/usr/lib
pankso@520 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@520 30 }