wok annotate xorg-xprop/receipt @ rev 16024

spk: add to cross arch's
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 06 23:00:20 2014 +0100 (2014-03-06)
parents 78b69bcf5ca6
children 87646c0eaba7
rev   line source
pankso@3019 1 # SliTaz package receipt.
pankso@3019 2
pankso@3019 3 PACKAGE="xorg-xprop"
slaxemulator@11135 4 VERSION="1.2.1"
pankso@3019 5 CATEGORY="x-window"
pankso@3019 6 SHORT_DESC="X xprop application."
pankso@3019 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="MIT"
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
pascal@15579 14 DEPENDS="xorg-libX11"
pascal@15579 15 BUILD_DEPENDS="xorg-libX11-dev"
pascal@15579 16
pankso@3019 17 # Rules to configure and make the package.
pankso@3019 18 compile_rules()
pankso@3019 19 {
pankso@3019 20 cd $src
pankso@3019 21 ./configure --prefix=/usr --mandir=/usr/share/man \
pankso@3019 22 $CONFIGURE_ARGS &&
pankso@3019 23 make &&
pascal@15579 24 make DESTDIR=$DESTDIR install
pankso@3019 25 }
pankso@3019 26
pankso@3019 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3019 28 genpkg_rules()
pankso@3019 29 {
pankso@3019 30 mkdir -p $fs/usr
pascal@15579 31 cp -a $install/usr/bin $fs/usr
pankso@3019 32 }