wok view screentest/receipt @ rev 19361

Up tazpkg (919)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 03 08:46:48 2016 +0200 (2016-08-03)
parents
children d37d15244372
line source
1 # SliTaz package receipt.
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 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"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's/prune , -name/prune -or -name/' autogen.sh
21 ./autogen.sh
22 ./configure --prefix=/usr $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs/
31 }