wok-next view screentest/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents f48456621a9d
children d635206a5649
line source
1 # SliTaz package receipt v2.
3 PACKAGE="screentest"
4 VERSION="2.0"
5 CATEGORY="misc"
6 SHORT_DESC="A CRT and LCD screen testing utility"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://tobix.github.io/screentest/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/TobiX/screentest/archive/$VERSION.tar.gz"
14 BUILD_DEPENDS="gtk2-dev libglade-dev automake autoconf libtool"
16 compile_rules() {
17 sed -i 's/prune , -name/prune -or -name/' autogen.sh
18 ./autogen.sh
20 ./configure $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules() {
27 copy @std
28 DEPENDS="gtk2 libglade"
29 TAGS="test diagnostic screen"
30 }