wok diff fribidi/receipt @ rev 24985

Add python-future
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 10 07:46:58 2022 +0000 (2022-05-10)
parents 5ea0ce1cecc0
children 20ad21d5532c
line diff
     1.1 --- a/fribidi/receipt	Tue Jun 08 08:46:05 2021 +0000
     1.2 +++ b/fribidi/receipt	Tue May 10 07:46:58 2022 +0000
     1.3 @@ -1,14 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fribidi"
     1.7 -VERSION="1.0.8"
     1.8 +VERSION="1.0.11"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="LGPL2.1"
    1.13  WEB_SITE="http://fribidi.org/"
    1.14  
    1.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.17  WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    1.18  
    1.19  DEPENDS="glibc-base"
    1.20 @@ -25,16 +25,13 @@
    1.21  compile_rules()
    1.22  {
    1.23  	./configure $CONFIGURE_ARGS &&
    1.24 -	make -j 1 &&
    1.25 +	make &&
    1.26  	make install
    1.27  }
    1.28  
    1.29  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.30  genpkg_rules()
    1.31  {
    1.32 -	mkdir -p $fs/usr/bin
    1.33 -	mkdir -p $fs/usr/lib
    1.34 -
    1.35 -	cp -a $install/usr/bin/fribidi	$fs/usr/bin
    1.36 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.37 +	cook_copy_folders	bin
    1.38 +	cook_copy_files		*.so*
    1.39  }