wok diff krb5-plugins/receipt @ rev 23813

syslinux/iso2exe: fix linld.com path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 25 18:40:12 2020 +0000 (2020-05-25)
parents ff8dc62daa05
children
line diff
     1.1 --- a/krb5-plugins/receipt	Sat Mar 16 16:04:43 2019 +0100
     1.2 +++ b/krb5-plugins/receipt	Mon May 25 18:40:12 2020 +0000
     1.3 @@ -1,22 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="krb5-plugins"
     1.7 -VERSION="1.17"
     1.8 +VERSION="1.18"
     1.9  CATEGORY="security"
    1.10  SHORT_DESC="Plugins for MIT Kerberos."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="MIT"
    1.13  WEB_SITE="https://web.mit.edu/kerberos/"
    1.14  
    1.15 +DEPENDS="krb5 libcrypto"
    1.16  WANTED="krb5"
    1.17 -DEPENDS="krb5 libcrypto"
    1.18  
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	while read file; do
    1.23 +	while read file
    1.24 +	  do
    1.25  		dir=$(dirname $file)
    1.26  		[ -d $fs$dir ] || mkdir -p $fs$dir
    1.27 -		cp -a $install$file $fs$dir
    1.28 -	done < $wanted_stuff/$PACKAGE.files-list
    1.29 +		cp -a $install$file	$fs$dir
    1.30 +	  done < $wanted_stuff/$PACKAGE.files-list
    1.31  }