wok-6.x rev 21006
updated gsl and gsl-dev (1.15 -> 2.5)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 09 10:08:12 2019 +0100 (2019-03-09) |
parents | a28d11e05227 |
children | 61564be8a464 |
files | gsl-dev/receipt gsl/receipt |
line diff
1.1 --- a/gsl-dev/receipt Sat Mar 09 09:43:51 2019 +0100 1.2 +++ b/gsl-dev/receipt Sat Mar 09 10:08:12 2019 +0100 1.3 @@ -1,24 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gsl-dev" 1.7 -VERSION="1.15" 1.8 +VERSION="2.5" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Gsl devel files (library and headers)." 1.11 +SHORT_DESC="Gsl development files (libraries and headers)." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL3" 1.14 +WEB_SITE="https://www.gnu.org/software/gsl/" 1.15 + 1.16 WANTED="gsl" 1.17 -WEB_SITE="http://www.gnu.org/software/gsl/" 1.18 - 1.19 DEPENDS="gsl pkg-config" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr/lib $fs/usr/bin $fs/usr/share 1.25 - cp -a $install/usr/include $fs/usr 1.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.28 - cp -a $install/usr/share/aclocal $fs/usr/share 1.29 - cp -a $install/usr/bin/*-config $fs/usr/bin 1.30 + cp -a $install/usr/include $fs/usr 1.31 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.32 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.33 + cp -a $install/usr/share/aclocal $fs/usr/share 1.34 + cp -a $install/usr/bin/*-config $fs/usr/bin 1.35 chmod +x $fs/usr/bin/* 1.36 }
2.1 --- a/gsl/receipt Sat Mar 09 09:43:51 2019 +0100 2.2 +++ b/gsl/receipt Sat Mar 09 10:08:12 2019 +0100 2.3 @@ -1,32 +1,33 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="gsl" 2.7 -VERSION="1.15" 2.8 +VERSION="2.5" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Numerical library for C and C++ programmers." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 LICENSE="GPL3" 2.13 +WEB_SITE="https://www.gnu.org/software/gsl/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WEB_SITE="http://www.gnu.org/software/gsl/" 2.17 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.18 2.19 # Rules to configure and make the package. 2.20 compile_rules() 2.21 { 2.22 - cd $src 2.23 - ./configure \ 2.24 - --prefix=/usr \ 2.25 - --infodir=/usr/share/info \ 2.26 - --mandir=/usr/share/man \ 2.27 + ./configure \ 2.28 + --prefix=/usr \ 2.29 + --infodir=/usr/share/info \ 2.30 + --mandir=/usr/share/man \ 2.31 $CONFIGURE_ARGS && 2.32 - make $MAKEFLAGS && make DESTDIR=$DESTDIR install 2.33 + make $MAKEFLAGS -j 1 && 2.34 + make DESTDIR=$DESTDIR install 2.35 } 2.36 2.37 # Rules to gen a SliTaz package suitable for Tazpkg. 2.38 genpkg_rules() 2.39 { 2.40 mkdir -p $fs/usr/lib 2.41 - cp -a $install/usr/bin $fs/usr 2.42 + cp -a $install/usr/bin $fs/usr 2.43 rm $fs/usr/bin/*-config 2.44 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.45 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.46 }