wok-next diff raine/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents d43bf7aae921
children 0c430fcaf2d9
line diff
     1.1 --- a/raine/receipt	Wed Mar 21 15:58:17 2018 +0200
     1.2 +++ b/raine/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.3 @@ -6,18 +6,16 @@
     1.4  SHORT_DESC="Emulates M68K Taito and Jaleco arcade machines"
     1.5  MAINTAINER="devl547@gmail.com"
     1.6  LICENSE="other"
     1.7 +WEB_SITE="http://rainemu.swishparty.co.uk/"
     1.8 +
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10 -WEB_SITE="http://rainemu.swishparty.co.uk"
    1.11  WGET_URL="$WEB_SITE/cgi-bin/gitweb.cgi?p=raine;a=snapshot;h=02988ce197bc5b9f1a9eae66251e883d649cc03b;sf=tgz"
    1.12  EXTRA_SOURCE_FILES="raines-0.51.9.tar.bz2"
    1.13  
    1.14 -DEPENDS="libsdl zlib libpng16 libsdl-image liblzma libsdl-ttf muparser mesa"
    1.15  BUILD_DEPENDS="libsdl-dev zlib-dev libpng16-dev nasm libsdl-image-dev xz-dev \
    1.16  libsdl-ttf-dev muparser-dev mesa-dev glu-dev"
    1.17  
    1.18 -# Rules to configure and make the package.
    1.19 -compile_rules()
    1.20 -{
    1.21 +compile_rules() {
    1.22  	touch -d 197001010000 make.dep cpuinfo
    1.23  	[ -s "$SRC/raines-0.51.9.tar.bz2" ] ||
    1.24  		wget -P $SRC \
    1.25 @@ -26,13 +24,14 @@
    1.26  	mv raine-0.51.9/fonts .
    1.27  	mv raine-0.51.9/scripts .
    1.28  	mv raine-0.51.9/bitmaps .
    1.29 -	make $MAKEFLAGS && make DESTDIR=$DESTDIR PREFIX=$install/usr/ install
    1.30 +
    1.31 +	make $MAKEFLAGS &&
    1.32 +	make DESTDIR=$install PREFIX=$install/usr/ install
    1.33  }
    1.34  
    1.35 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.36 -genpkg_rules()
    1.37 -{
    1.38 +genpkg_rules() {
    1.39  	mkdir -p $fs/usr/
    1.40  	cp -a $install/usr/games $fs/usr/
    1.41  	cp -a $install/usr/share $fs/usr/
    1.42 +	DEPENDS="libsdl zlib libpng16 libsdl-image liblzma libsdl-ttf muparser mesa"
    1.43  }