wok view gsl/receipt @ rev 22885

updated gsl and gsl-dev (2.5 -> 2.6)
author Hans-G?nter Theisgen
date Sat Feb 22 16:56:40 2020 +0100 (2020-02-22)
parents 617057b68bbf
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="gsl"
4 VERSION="2.6"
5 CATEGORY="development"
6 SHORT_DESC="Numerical library for C and C++ programmers."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/gsl/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make $MAKEFLAGS -j 1 &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 rm $fs/usr/bin/*-config
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }