wok diff deutex-devel/receipt @ rev 23955

Add rhash
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 26 09:25:55 2020 +0000 (2020-09-26)
parents 08a7f361d8d2
children 5ea0ce1cecc0
line diff
     1.1 --- a/deutex-devel/receipt	Sat Mar 23 13:21:39 2019 +0100
     1.2 +++ b/deutex-devel/receipt	Sat Sep 26 09:25:55 2020 +0000
     1.3 @@ -1,32 +1,35 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="deutex-devel"
     1.7 -VERSION="5.1.2"
     1.8 +VERSION="5.2.1"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="A WAD file composer for Doom, Heretic, Hexen and Strife."
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="https://github.com/Doom-Utils/deutex"
    1.14 +
    1.15  SOURCE="deutex"
    1.16  TARBALL="$SOURCE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://github.com/Doom-Utils/deutex"
    1.18 -WGET_URL="https://github.com/Doom-Utils/deutex/archive/v$VERSION.tar.gz"
    1.19 +WGET_URL="https://github.com/Doom-Utils/$SOURCE/archive/v$VERSION.tar.gz"
    1.20  
    1.21 -BUILD_DEPENDS="automake"
    1.22 +BUILD_DEPENDS="autoconf automake"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27  	mkdir -p $DESTDIR/usr/bin
    1.28 -	./bootstrap
    1.29 +	./bootstrap &&
    1.30  	./configure && 
    1.31 -	make && 
    1.32 +	make &&
    1.33  	make BINDIR=$DESTDIR/usr/bin install
    1.34  }
    1.35  
    1.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.37  genpkg_rules()
    1.38  {
    1.39 -	mkdir -p $fs/usr $install/usr/doc
    1.40 -	cp -a $src/man/deutex.txt $install/usr/doc
    1.41 -	cp -a $install/usr/bin $fs/usr
    1.42 +	mkdir -p $fs/usr
    1.43 +	mkdir -p $install/usr/doc
    1.44 +
    1.45 +	cp -a $src/man/deutex.txt	$install/usr/doc
    1.46 +	cp -a $install/usr/bin		$fs/usr
    1.47  }