wok view 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 source
1 # SliTaz package receipt.
3 PACKAGE="deutex-devel"
4 VERSION="5.2.1"
5 CATEGORY="development"
6 SHORT_DESC="A WAD file composer for Doom, Heretic, Hexen and Strife."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/Doom-Utils/deutex"
11 SOURCE="deutex"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/Doom-Utils/$SOURCE/archive/v$VERSION.tar.gz"
15 BUILD_DEPENDS="autoconf automake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir -p $DESTDIR/usr/bin
21 ./bootstrap &&
22 ./configure &&
23 make &&
24 make BINDIR=$DESTDIR/usr/bin install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 mkdir -p $install/usr/doc
33 cp -a $src/man/deutex.txt $install/usr/doc
34 cp -a $install/usr/bin $fs/usr
35 }