# HG changeset patch # User Hans-G?nter Theisgen # Date 1578985888 -3600 # Node ID 3bc72486e3963a70945a912eb6345ce78408b68a # Parent 1bf2e81fd62f7e45447b1340886671e96e6bdbf9 updated deutex-devel (5.1.2 -> 5.2.1) diff -r 1bf2e81fd62f -r 3bc72486e396 deutex-devel/receipt --- a/deutex-devel/receipt Tue Jan 14 07:58:31 2020 +0100 +++ b/deutex-devel/receipt Tue Jan 14 08:11:28 2020 +0100 @@ -1,32 +1,35 @@ # SliTaz package receipt. PACKAGE="deutex-devel" -VERSION="5.1.2" +VERSION="5.2.1" CATEGORY="development" SHORT_DESC="A WAD file composer for Doom, Heretic, Hexen and Strife." MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL2" +WEB_SITE="https://github.com/Doom-Utils/deutex" + SOURCE="deutex" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://github.com/Doom-Utils/deutex" -WGET_URL="https://github.com/Doom-Utils/deutex/archive/v$VERSION.tar.gz" +WGET_URL="https://github.com/Doom-Utils/$SOURCE/archive/v$VERSION.tar.gz" -BUILD_DEPENDS="automake" +BUILD_DEPENDS="autoconf automake" # Rules to configure and make the package. compile_rules() { mkdir -p $DESTDIR/usr/bin - ./bootstrap + ./bootstrap && ./configure && - make && + make && make BINDIR=$DESTDIR/usr/bin install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr $install/usr/doc - cp -a $src/man/deutex.txt $install/usr/doc - cp -a $install/usr/bin $fs/usr + mkdir -p $fs/usr + mkdir -p $install/usr/doc + + cp -a $src/man/deutex.txt $install/usr/doc + cp -a $install/usr/bin $fs/usr }