wok diff fribidi/receipt @ rev 23757

fusecloop/extract_compressed_fs: fix v2 convertion
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 02 17:31:45 2020 +0000 (2020-05-02)
parents d880f6703401
children 5ea0ce1cecc0
line diff
     1.1 --- a/fribidi/receipt	Sun Mar 03 11:26:23 2019 +0100
     1.2 +++ b/fribidi/receipt	Sat May 02 17:31:45 2020 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fribidi"
     1.7 -VERSION="1.0.5"
     1.8 +VERSION="1.0.8"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -12,6 +12,7 @@
    1.13  WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    1.14  
    1.15  DEPENDS="glibc-base"
    1.16 +
    1.17  HOST_ARCH="i486 arm"
    1.18  
    1.19  # Rules to configure and make the package.
    1.20 @@ -25,7 +26,9 @@
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24 -	mkdir -p $fs/usr/bin $fs/usr/lib
    1.25 -	cp -a $install/usr/bin/fribidi $fs/usr/bin
    1.26 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.27 +	mkdir -p $fs/usr/bin
    1.28 +	mkdir -p $fs/usr/lib
    1.29 +
    1.30 +	cp -a $install/usr/bin/fribidi	$fs/usr/bin
    1.31 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.32  }