wok annotate screentest/receipt @ rev 18487

Add screentest
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 10 12:26:29 2015 +0200 (2015-10-10)
parents
children d37d15244372
rev   line source
pascal@18487 1 # SliTaz package receipt.
pascal@18487 2
pascal@18487 3 PACKAGE="screentest"
pascal@18487 4 VERSION="2.0"
pascal@18487 5 CATEGORY="misc"
pascal@18487 6 SHORT_DESC="A CRT and LCD screen testing utility."
pascal@18487 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18487 8 LICENSE="GPL2"
pascal@18487 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@18487 10 WEB_SITE="http://tobix.github.io/screentest/"
pascal@18487 11 WGET_URL="https://github.com/TobiX/screentest/archive/$VERSION.tar.gz"
pascal@18487 12 TAGS="test diagnostic screen"
pascal@18487 13
pascal@18487 14 DEPENDS="gtk+ libglade"
pascal@18487 15 BUILD_DEPENDS="wget gtk+-dev libglade-dev automake autoconf libtool pkg-config"
pascal@18487 16
pascal@18487 17 # Rules to configure and make the package.
pascal@18487 18 compile_rules()
pascal@18487 19 {
pascal@18487 20 sed -i 's/prune , -name/prune -or -name/' autogen.sh
pascal@18487 21 ./autogen.sh
pascal@18487 22 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@18487 23 make &&
pascal@18487 24 make DESTDIR=$DESTDIR install
pascal@18487 25 }
pascal@18487 26
pascal@18487 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18487 28 genpkg_rules()
pascal@18487 29 {
pascal@18487 30 cp -a $install/* $fs/
pascal@18487 31 }