wok-next diff libbluray/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line diff
     1.1 --- a/libbluray/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/libbluray/receipt	Tue Sep 01 11:04:25 2020 +0000
     1.3 @@ -10,9 +10,15 @@
     1.4  
     1.5  TARBALL="$PACKAGE-$VERSION.tar.bz2"
     1.6  WGET_URL="ftp://ftp.videolan.org/pub/videolan/libbluray/$VERSION/$TARBALL"
     1.7 +TARBALL_SHA1="025ef1c0a25b42f4a13a9fb2df09fc9cef1a821b"
     1.8  
     1.9  BUILD_DEPENDS="libxml2-dev freetype-dev fontconfig-dev"
    1.10 -SPLIT="$PACKAGE-dev"
    1.11 +SPLIT="$PACKAGE-dev $PACKAGE"
    1.12 +
    1.13 +COPY_dev="@dev *.so"
    1.14 +
    1.15 +DEPENDS_std="fontconfig freetype libxml2"
    1.16 +DEPENDS_dev="$PACKAGE fontconfig-dev freetype-dev libxml2-dev"
    1.17  
    1.18  compile_rules() {
    1.19  	./configure \
    1.20 @@ -23,17 +29,3 @@
    1.21  	make &&
    1.22  	make install
    1.23  }
    1.24 -
    1.25 -genpkg_rules() {
    1.26 -	case $PACKAGE in
    1.27 -		libbluray)
    1.28 -			copy @std
    1.29 -			DEPENDS="fontconfig freetype libxml2"
    1.30 -			;;
    1.31 -		*-dev)
    1.32 -			copy @dev
    1.33 -			DEPENDS="libbluray \
    1.34 -			fontconfig-dev freetype-dev libxml2-dev"
    1.35 -			;;
    1.36 -	esac
    1.37 -}