wok annotate xorg-xprop/receipt @ rev 7924

Removed arch patches for GConf. There not working and i don't think we need them.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jan 09 22:30:39 2011 +0000 (2011-01-09)
parents 07ae722ec64e
children c514cc4854d8
rev   line source
pankso@3019 1 # SliTaz package receipt.
pankso@3019 2
pankso@3019 3 PACKAGE="xorg-xprop"
slaxemulator@7254 4 VERSION="1.2.0"
pankso@3019 5 CATEGORY="x-window"
pankso@3019 6 SHORT_DESC="X xprop application."
pankso@3019 7 MAINTAINER="pankso@slitaz.org"
pankso@3019 8 DEPENDS="xorg"
pankso@3019 9 SOURCE="xprop"
gokhlayeh@6993 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@3019 11 WEB_SITE="http://www.x.org/"
pankso@3019 12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pankso@3019 13
pankso@3019 14 # Rules to configure and make the package.
pankso@3019 15 compile_rules()
pankso@3019 16 {
pankso@3019 17 cd $src
pankso@3019 18 ./configure --prefix=/usr --mandir=/usr/share/man \
pankso@3019 19 $CONFIGURE_ARGS &&
pankso@3019 20 make &&
pankso@3019 21 make DESTDIR=$PWD/_pkg install
pankso@3019 22 }
pankso@3019 23
pankso@3019 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3019 25 genpkg_rules()
pankso@3019 26 {
pankso@3019 27 mkdir -p $fs/usr
pankso@3019 28 cp -a $_pkg/usr/bin $fs/usr
pankso@3019 29 }