wok view screentest/receipt @ rev 25695

sc-im: replaced released version by development version
author Hans-G?nter Theisgen
date Fri Apr 26 08:13:41 2024 +0100 (6 weeks ago)
parents d88295c12cfc
children 82a123e54615
line source
1 # SliTaz package receipt.
3 PACKAGE="screentest"
4 VERSION="2.1"
5 CATEGORY="misc"
6 SHORT_DESC="A CRT and LCD screen testing utility."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://tobix.github.io/screentest/"
11 WGET_URL="https://github.com/TobiX/screentest/archive/$VERSION.tar.gz"
12 TAGS="test diagnostic screen"
14 DEPENDS="gtk+ libglade"
15 BUILD_DEPENDS="wget gtk+-dev libglade-dev automake autoconf libtool pkg-config \
16 file"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
22 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 mkdir build-aux
29 sed -i 's/prune , -name/prune -or -name/' autogen.sh
30 ./autogen.sh
31 ./configure --prefix=/usr $CONFIGURE_ARGS &&
32 make &&
33 make DESTDIR=$DESTDIR install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 cp -a $install/* $fs/
40 }