wok-next diff libsndfile/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/libsndfile/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/libsndfile/receipt	Tue Sep 01 11:04:25 2020 +0000
     1.3 @@ -7,12 +7,22 @@
     1.4  MAINTAINER="devel@slitaz.org"
     1.5  LICENSE="LGPL2.1"
     1.6  WEB_SITE="http://www.mega-nerd.com/libsndfile/"
     1.7 +LFS="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libsndfile.html"
     1.8  
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WGET_URL="$WEB_SITE/files/$TARBALL"
    1.11 +TARBALL_SHA1="85aa967e19f6b9bf975601d79669025e5f8bc77d"
    1.12  
    1.13  BUILD_DEPENDS="alsa-lib-dev libvorbis-dev flac-dev"
    1.14 -SPLIT="$PACKAGE-apps $PACKAGE-dev"
    1.15 +SPLIT="$PACKAGE-apps $PACKAGE $PACKAGE-dev"
    1.16 +
    1.17 +COPY_apps="bin/"
    1.18 +
    1.19 +CAT_apps="multimedia|applications"
    1.20 +
    1.21 +DEPENDS_std="flac libogg libvorbis"
    1.22 +DEPENDS_apps="$PACKAGE alsa-lib"
    1.23 +DEPENDS_dev="$PACKAGE flac-dev libogg-dev libvorbis-dev"
    1.24  
    1.25  compile_rules() {
    1.26  	./configure \
    1.27 @@ -22,22 +32,3 @@
    1.28  	make &&
    1.29  	make install
    1.30  }
    1.31 -
    1.32 -genpkg_rules() {
    1.33 -	case $PACKAGE in
    1.34 -		libsndfile)
    1.35 -			copy *.so*
    1.36 -			DEPENDS="flac libogg libvorbis"
    1.37 -			;;
    1.38 -		*-apps)
    1.39 -			copy bin/
    1.40 -			CAT="multimedia|applications"
    1.41 -			DEPENDS="alsa-lib libsndfile"
    1.42 -			;;
    1.43 -		*-dev)
    1.44 -			copy @dev
    1.45 -			DEPENDS="libsndfile libsndfile-apps flac-dev libogg-dev \
    1.46 -			libvorbis-dev"
    1.47 -			;;
    1.48 -	esac
    1.49 -}