wok-next diff mupen64plus/receipt @ rev 20775

quodlibet: remove non-existent package from bdeps
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jun 06 20:44:57 2018 +0300 (2018-06-06)
parents c0521c689857
children a244e109372e
line diff
     1.1 --- a/mupen64plus/receipt	Fri Mar 16 00:27:34 2018 +0200
     1.2 +++ b/mupen64plus/receipt	Wed Jun 06 20:44:57 2018 +0300
     1.3 @@ -1,4 +1,4 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="mupen64plus"
     1.8  VERSION="2.5"
     1.9 @@ -6,27 +6,26 @@
    1.10  SHORT_DESC="Nintendo64 Emulator"
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://www.mupen64plus.org/"
    1.14 +
    1.15  TARBALL="$PACKAGE-bundle-src-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://www.mupen64plus.org/"
    1.17  WGET_URL="https://github.com/mupen64plus/mupen64plus-core/releases/download/$VERSION/$TARBALL"
    1.18 -TAGS="emulator nintendo64"
    1.19  
    1.20 -DEPENDS="bzlib freetype libboost-filesystem glu libsamplerate libsdl speex"
    1.21  BUILD_DEPENDS="gtk+-dev libboost-dev libboost-filesystem glu-dev \
    1.22 -libsamplerate-dev libsdl-dev libsdl-ttf-dev mesa-dev speex-dev yasm zlib-dev"
    1.23 +libsamplerate-dev libsdl-dev libsdl-ttf-dev mesa-dev speex-dev yasm zlib-dev \
    1.24 +speexdsp-dev"
    1.25  
    1.26 -# Rules to configure and make the package.
    1.27 -compile_rules()
    1.28 -{
    1.29 +compile_rules() {
    1.30  	export PREFIX=/usr DESTDIR=$install
    1.31  	./m64p_build.sh &&
    1.32 -	./m64p_install.sh
    1.33 +	./m64p_install.sh || return 1
    1.34 +
    1.35 +	find $install -name '*.so*' -exec chmod 755 '{}' \;
    1.36  }
    1.37  
    1.38 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.39 -genpkg_rules()
    1.40 -{
    1.41 -	cp -a $install/* $fs
    1.42 -	rm -r $fs/usr/include
    1.43 -	find $fs -name '*.so*' -exec chmod a+x \{\} \;
    1.44 +genpkg_rules() {
    1.45 +	copy @std
    1.46 +	DEPENDS="freetype glu libboost-filesystem libboost-system libpng16 \
    1.47 +	libsamplerate libsdl mesa speexdsp zlib"
    1.48 +	TAGS="emulator nintendo64"
    1.49  }