wok-undigest annotate wmctrl/receipt @ rev 387

linmodem-hsfmodem: partial fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 20 20:45:14 2011 +0200 (2011-08-20)
parents
children
rev   line source
pascal@375 1 # SliTaz package receipt.
pascal@375 2
pascal@375 3 PACKAGE="wmctrl"
pascal@375 4 VERSION="1.07"
pascal@375 5 CATEGORY="x-window"
pascal@375 6 SHORT_DESC="Command line tool for EWMH/NetWM compatible X Window Manager."
pascal@375 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@375 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@375 9 WEB_SITE="http://tomas.styblo.name/wmctrl/"
pascal@375 10 WGET_URL="${WEB_SITE}dist/$TARBALL"
pascal@375 11
pascal@375 12 DEPENDS="xorg glib"
pascal@375 13 BUILD_DEPENDS="xorg-dev glib-dev"
pascal@375 14
pascal@375 15 # Rules to configure and make the package.
pascal@375 16 compile_rules()
pascal@375 17 {
pascal@375 18 cd $src
pascal@375 19 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@375 20 $CONFIGURE_ARGS &&
pascal@375 21 make &&
pascal@375 22 make DESTDIR=$DESTDIR install
pascal@375 23 }
pascal@375 24
pascal@375 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@375 26 genpkg_rules()
pascal@375 27 {
pascal@375 28 mkdir -p $fs/usr
pascal@375 29 cp -a $_pkg/usr/bin $fs/usr
pascal@375 30 }
pascal@375 31