From 2d4ce16a010b19276481189617aaa2de3f907fde Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 20 Feb 2014 09:39:01 +0100 Subject: [PATCH] gsl: remove long_desc. --- srcpkgs/gsl/template | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/srcpkgs/gsl/template b/srcpkgs/gsl/template index d07f9075052..092d3e123ff 100644 --- a/srcpkgs/gsl/template +++ b/srcpkgs/gsl/template @@ -1,25 +1,27 @@ # Template file for 'gsl' pkgname=gsl version=1.15 +revision=3 build_style=gnu-configure -revision=2 short_desc="The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers" maintainer="Juan RP " homepage="http://www.gnu.org/software/gsl/gsl.html" license="GPL-2" distfiles="$GNU_SITE/gsl/$pkgname-$version.tar.gz" checksum=85b907e57902e2b7606ef3aef960302ffdd13bd9dc5b8fcbfa75e4f0bf340ea3 -long_desc=" - The library provides a wide range of mathematical routines such as random - number generators, special functions and least-squares fitting. There are - over 1000 functions in total with an extensive test suite." gsl-devel_package() { - depends="gsl>=${version}" - short_desc="${short_desc} - development files" + depends="gsl>=${version}_${revision}" + short_desc+=" - development files" pkg_install() { + vmove usr/bin/gsl-config + vmove usr/share/man/man1/gsl-config.1 + vmove usr/share/man/man3 + vmove usr/share/aclocal + vmove usr/share/info vmove usr/include - vmove usr/share + vmove usr/lib/pkgconfig vmove "usr/lib/*.a" + vmove "usr/lib/*.so" } }