wok-6.x rev 22644
updated deutex-devel (5.1.2 -> 5.2.1)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jan 14 08:11:28 2020 +0100 (2020-01-14) |
parents | 1bf2e81fd62f |
children | 38376338ffe3 |
files | deutex-devel/receipt |
line diff
1.1 --- a/deutex-devel/receipt Tue Jan 14 07:58:31 2020 +0100 1.2 +++ b/deutex-devel/receipt Tue Jan 14 08:11:28 2020 +0100 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 }