wok-next view gsl/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gsl"
4 VERSION="2.6"
5 CATEGORY="libdevel"
6 SHORT_DESC="GNU Scientific Library"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/gsl/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/gsl.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 SPLIT="gsl-dev"
17 compile_rules()
18 {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make $MAKEFLAGS &&
24 make install
25 }
27 genpkg_rules()
28 {
29 case $PACKAGE in
30 (gsl)
31 copy @std
32 ;;
33 (*-dev)
34 copy @dev
35 ;;
36 esac
37 }