wok diff gsl-dev/receipt @ rev 23892
Fix coturn & grub4dos
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jul 25 17:02:18 2020 +0000 (2020-07-25) |
parents | 617057b68bbf |
children | 22350946c558 |
line diff
1.1 --- a/gsl-dev/receipt Sat Mar 09 10:08:12 2019 +0100 1.2 +++ b/gsl-dev/receipt Sat Jul 25 17:02:18 2020 +0000 1.3 @@ -1,24 +1,26 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gsl-dev" 1.7 -VERSION="2.5" 1.8 +VERSION="2.6" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Gsl development files (libraries and headers)." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="GPL3" 1.13 WEB_SITE="https://www.gnu.org/software/gsl/" 1.14 1.15 +DEPENDS="gsl pkg-config" 1.16 WANTED="gsl" 1.17 -DEPENDS="gsl pkg-config" 1.18 1.19 # Rules to gen a SliTaz package suitable for Tazpkg. 1.20 genpkg_rules() 1.21 { 1.22 - mkdir -p $fs/usr/lib $fs/usr/bin $fs/usr/share 1.23 + mkdir -p $fs/usr/lib 1.24 + mkdir -p $fs/usr/bin $fs/usr/share 1.25 + 1.26 cp -a $install/usr/include $fs/usr 1.27 cp -a $install/usr/lib/*.*a $fs/usr/lib 1.28 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.29 cp -a $install/usr/share/aclocal $fs/usr/share 1.30 cp -a $install/usr/bin/*-config $fs/usr/bin 1.31 - chmod +x $fs/usr/bin/* 1.32 + chmod +x $fs/usr/bin/* 1.33 }