wok view deutex-devel/receipt @ rev 24665

updated incron (0.5.10 -> 0.5.12)
author Hans-G?nter Theisgen
date Fri Mar 11 14:57:00 2022 +0100 (2022-03-11)
parents 3bc72486e396
children fe1b5660fdd1
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 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 mkdir -p $DESTDIR/usr/bin
27 ./bootstrap &&
28 ./configure &&
29 make &&
30 make BINDIR=$DESTDIR/usr/bin install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 mkdir -p $install/usr/doc
39 cp -a $src/man/deutex.txt $install/usr/doc
40 cp -a $install/usr/bin $fs/usr
41 }