wok annotate xorg-xwininfo/receipt @ rev 16081

ARM: add more basic Xorg pkgs and improve jwm receipt
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 15 19:56:28 2014 +0100 (2014-03-15)
parents eb8067417980
children 87646c0eaba7
rev   line source
jozee@3025 1 # SliTaz package receipt.
jozee@3025 2
jozee@3025 3 PACKAGE="xorg-xwininfo"
slaxemulator@11131 4 VERSION="1.1.2"
jozee@3025 5 CATEGORY="x-window"
jozee@3025 6 SHORT_DESC="window information utility to query x-server"
jozee@3025 7 MAINTAINER="jozee@slitaz.org"
pascal@15579 8 LICENSE="MIT"
jozee@3025 9 SOURCE="xwininfo"
jozee@3025 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
jozee@3025 11 WEB_SITE="http://xorg.freedesktop.org/"
jozee@3025 12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
jozee@3025 13 TAGS="util xorg windows"
pankso@16081 14 HOST_ARCH="i486 arm"
jozee@3025 15
pascal@15579 16 DEPENDS="xorg-libX11"
pascal@15579 17 BUILD_DEPENDS="xorg-libX11-dev"
pascal@15579 18
jozee@3025 19 # Rules to configure and make the package.ls sr
jozee@3025 20 compile_rules()
jozee@3025 21 {
jozee@3025 22 cd $src
jozee@3025 23 ./configure \
jozee@3025 24 --prefix=/usr \
jozee@3025 25 --mandir=/usr/share/man \
jozee@3025 26 $CONFIGURE_ARGS &&
jozee@3025 27 make &&
slaxemulator@11131 28 make DESTDIR=$DESTDIR install
jozee@3025 29 }
jozee@3025 30
jozee@3025 31 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3025 32 genpkg_rules()
jozee@3025 33 {
jozee@3025 34 mkdir -p $fs/usr
pascal@15579 35 cp -a $install/usr/bin $fs/usr
jozee@3025 36 }
jozee@3025 37